about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-11-02 17:07:14 +0100
committerAnselm R. Garbe <garbeam@gmail.com>2007-11-02 17:07:14 +0100
commitaf4667a85a11a1c001e60894a7ec7458c208bc0d (patch)
treea56a0218f6daac99481ce6dba9e7a4d52aabd353 /dwm.c
parenta98b5e59359173111322171187ccfd951df85a38 (diff)
downloaddwm-af4667a85a11a1c001e60894a7ec7458c208bc0d.tar.gz
simplified
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c13
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)) {
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178