about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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)) {
3a'>^
2b250717 ^
848ebc1e ^




4a943d4e ^










1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67