diff options
author | Anselm R. Garbe | 2007-11-03 21:14:04 +0100 |
---|---|---|
committer | Anselm R. Garbe | 2007-11-03 21:14:04 +0100 |
commit | 260a55ef625466a5ba6c6c6ef736706df7b5d81b (patch) | |
tree | bb0cde84ccae7c0ea9ce087c074fdf6b95c7e846 /dwm.c | |
parent | 0e98090d653457488d74103dc44a1e2aba071895 (diff) |
doing it in a shorter way
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1321,10 +1321,8 @@ run(void) { *p = '\0'; offset = 0; } - else if(offset + r < len - 1) - offset += r; else - offset = 0; + offset = (offset + r < len - 1) ? offset + r : 0; } drawbar(); } |