From 1f49c0e138ebbb683fd9215f6e16d38d9ca4cd4d Mon Sep 17 00:00:00 2001 From: Osier Yang Date: Tue, 21 May 2013 18:01:00 +0800 Subject: [PATCH] nwfilter: Change the comment style The more common habit is to add the comment after the statements. --- src/nwfilter/nwfilter_dhcpsnoop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nwfilter/nwfilter_dhcpsnoop.c b/src/nwfilter/nwfilter_dhcpsnoop.c index b9921e5aeb..451c783671 100644 --- a/src/nwfilter/nwfilter_dhcpsnoop.c +++ b/src/nwfilter/nwfilter_dhcpsnoop.c @@ -369,7 +369,7 @@ virNWFilterSnoopListAdd(virNWFilterSnoopIPLeasePtr plnew, for (pl = *end; pl && plnew->timeout < pl->timeout; pl = pl->prev) - /* empty */ ; + ; /* empty */ if (!pl) { plnew->next = *start; @@ -526,7 +526,7 @@ virNWFilterSnoopIPLeaseGetByIP(virNWFilterSnoopIPLeasePtr start, for (pl = start; pl && !virSocketAddrEqual(&pl->ipAddress, ipaddr); pl = pl->next) - /* empty */ ; + ; /* empty */ return pl; }