simplified
This commit is contained in:
		
							parent
							
								
									a98b5e5935
								
							
						
					
					
						commit
						af4667a85a
					
				
							
								
								
									
										13
									
								
								dwm.c
								
								
								
								
							
							
						
						
									
										13
									
								
								dwm.c
								
								
								
								
							| 
						 | 
					@ -1300,15 +1300,12 @@ run(void) {
 | 
				
			||||||
			eprint("select failed\n");
 | 
								eprint("select failed\n");
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		if(FD_ISSET(STDIN_FILENO, &rd)) {
 | 
							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' */
 | 
									stext[strlen(stext) - 1] = '\0'; /* remove tailing '\n' */
 | 
				
			||||||
			else {
 | 
								else if(feof(stdin))
 | 
				
			||||||
				readin = False;
 | 
									strncpy(stext, "EOF", 4);
 | 
				
			||||||
				if(feof(stdin))
 | 
								else /* error occured */
 | 
				
			||||||
					strncpy(stext, "EOF", 4);
 | 
									strncpy(stext, strerror(errno), sizeof stext - 1);
 | 
				
			||||||
				else /* error occured */
 | 
					 | 
				
			||||||
					strncpy(stext, strerror(errno), sizeof stext - 1);
 | 
					 | 
				
			||||||
			}
 | 
					 | 
				
			||||||
			drawbar();
 | 
								drawbar();
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
		while(XPending(dpy)) {
 | 
							while(XPending(dpy)) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue