aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-11-26 15:43:16 +0100
committerarg@mig29 <unknown>2006-11-26 15:43:16 +0100
commit2210ea7e3b0b2839ac7fb49c18d2731cb9e94e01 (patch)
tree4fd7ee25f2c3a4c48ab7438c2e31b7a47fa10ae2 /main.c
parent61a1910f91fe6aba428193087d6c3ff21374ee5e (diff)
downloaddwm-2210ea7e3b0b2839ac7fb49c18d2731cb9e94e01.tar.zst
applied yet another proposal of Manuel
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index f196df7..934bea4 100644
--- a/main.c
+++ b/main.c
@@ -284,8 +284,8 @@ main(int argc, char *argv[]) {
readin = False;
break;
default:
- stext[r - (stext[r - 1] == '\n' ? 1 : 0)] = '\0';
- for(p = stext + strlen(stext) - 1; p > stext && *p != '\n'; --p);
+ for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
+ for(p = stext + strlen(stext) - 1; p >= stext && *p != '\n'; --p);
if(p > stext)
strncpy(stext, p + 1, sizeof stext);
}