tree: Use 1 semicolon at the end of a statement

Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/889
This commit is contained in:
Elyes Haouas 2023-12-27 21:02:07 -07:00 committed by Warner Losh
parent 05e5852d1b
commit 540be39b0b
3 changed files with 4 additions and 4 deletions

View file

@ -578,7 +578,7 @@ dumphex(FILE *log, int dopts, char *buf, int len)
}
if ((j + 1) & 0xf)
*t++ = ' ';;
*t++ = ' ';
}
if (j & 0xf) {

View file

@ -527,7 +527,7 @@ find_error(int errnum)
ipf_error_entry_t *ie;
int l = -1, r = IPF_NUM_ERRORS + 1, step;
step = (r - l) / 2;;
step = (r - l) / 2;
while (step != 0) {
ie = ipf_errors + l + step;
@ -538,7 +538,7 @@ find_error(int errnum)
r = step;
else
l = step;
step = (r - l) / 2;;
step = (r - l) / 2;
}
return (NULL);

View file

@ -19,7 +19,7 @@ void ipf_dotuning(int fd, char *tuneargs, ioctlfunc_t iocfn)
bzero((char *)&tu, sizeof(tu));
obj.ipfo_rev = IPFILTER_VERSION;
obj.ipfo_size = sizeof(tu);;
obj.ipfo_size = sizeof(tu);
obj.ipfo_ptr = (void *)&tu;
obj.ipfo_type = IPFOBJ_TUNEABLE;