diff options
author | Anselm R. Garbe <garbeam@gmail.com> | 2007-11-02 17:07:14 +0100 |
---|---|---|
committer | Anselm R. Garbe <garbeam@gmail.com> | 2007-11-02 17:07:14 +0100 |
commit | af4667a85a11a1c001e60894a7ec7458c208bc0d (patch) | |
tree | a56a0218f6daac99481ce6dba9e7a4d52aabd353 /dwm.c | |
parent | a98b5e59359173111322171187ccfd951df85a38 (diff) | |
download | dwm-af4667a85a11a1c001e60894a7ec7458c208bc0d.tar.gz |
simplified
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/dwm.c b/dwm.c index c595a51..266dd15 100644 --- a/dwm.c +++ b/dwm.c @@ -1300,15 +1300,12 @@ run(void) { eprint("select failed\n"); } if(FD_ISSET(STDIN_FILENO, &rd)) { - if(stext == fgets(stext, sizeof stext - 1, stdin)) + if((readin = (stext == fgets(stext, sizeof stext - 1, stdin)))) stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */ - else { - readin = False; - if(feof(stdin)) - strncpy(stext, "EOF", 4); - else /* error occured */ - strncpy(stext, strerror(errno), sizeof stext - 1); - } + else if(feof(stdin)) + strncpy(stext, "EOF", 4); + else /* error occured */ + strncpy(stext, strerror(errno), sizeof stext - 1); drawbar(); } while(XPending(dpy)) { |