wmifs: Fix "suggest braces around empty body in an ‘if’ statement" compiler warning.

This commit is contained in:
Doug Torrance 2015-05-27 17:33:14 -05:00 committed by Carlos R. Mafra
parent 8a2de61837
commit 621457313e

View file

@ -961,8 +961,9 @@ void get_ppp_stats(struct ppp_stats *cur)
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") */;
}
*cur = req.stats;
}