tpneubeck pointed out an obvious thing, that a second p = stext + strlen(stext) - 1 is unnecessary - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit fd995dac78e34cc427abd7198af0db957a40664a
(DIR) parent e5765cdd844125f7044d316b710b9a5a55117557
(HTM) Author: Anselm R. Garbe <arg@suckless.org>
Date: Fri, 9 Feb 2007 14:56:19 +0100
pneubeck pointed out an obvious thing, that a second p = stext + strlen(stext) - 1 is unnecessary
Diffstat:
M main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/main.c b/main.c
t@@ -273,7 +273,7 @@ main(int argc, char *argv[]) {
break;
default:
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);
+ for(; p >= stext && *p != '\n'; --p);
if(p > stext)
strncpy(stext, p + 1, sizeof stext);
}