nwfilter: Change the comment style

The more common habit is to add the comment after the statements.
This commit is contained in:
Osier Yang 2013-05-21 18:01:00 +08:00
parent 1f9dcbc7f1
commit 1f49c0e138

View File

@ -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;
}