remove always true condition in if statement
This commit is contained in:
		
				
					committed by
					
						
						Hiltjo Posthuma
					
				
			
			
				
	
			
			
			
						parent
						
							1a13d0465d
						
					
				
				
					commit
					523aa08f51
				
			
							
								
								
									
										2
									
								
								stest.c
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								stest.c
									
									
									
									
									
								
							@@ -84,7 +84,7 @@ main(int argc, char *argv[])
 | 
				
			|||||||
	if (!argc) {
 | 
						if (!argc) {
 | 
				
			||||||
		/* read list from stdin */
 | 
							/* read list from stdin */
 | 
				
			||||||
		while ((n = getline(&line, &linesiz, stdin)) > 0) {
 | 
							while ((n = getline(&line, &linesiz, stdin)) > 0) {
 | 
				
			||||||
			if (n && line[n - 1] == '\n')
 | 
								if (line[n - 1] == '\n')
 | 
				
			||||||
				line[n - 1] = '\0';
 | 
									line[n - 1] = '\0';
 | 
				
			||||||
			test(line, line);
 | 
								test(line, line);
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user