wmifs: Fix "suggest braces around empty body in an ‘if’ statement" compiler warning.
This commit is contained in:
		
							parent
							
								
									8a2de61837
								
							
						
					
					
						commit
						621457313e
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
					@ -961,8 +961,9 @@ void get_ppp_stats(struct ppp_stats *cur)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	sprintf(req.ifr__name, "ppp%d", PPP_UNIT);
 | 
						sprintf(req.ifr__name, "ppp%d", PPP_UNIT);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (ioctl(ppp_h, SIOCGPPPSTATS, &req) < 0)
 | 
						if (ioctl(ppp_h, SIOCGPPPSTATS, &req) < 0) {
 | 
				
			||||||
		/* fprintf(stderr, "heyho!\n") */;
 | 
							/* fprintf(stderr, "heyho!\n") */;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
	*cur = req.stats;
 | 
						*cur = req.stats;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue