2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 06:15:37 +00:00

Replace bare ";" in the body of for() loops with "continue;" for

improved readability.
This commit is contained in:
Todd C. Miller
2016-10-26 10:42:28 -06:00
parent f9d6777755
commit fc1b4155d7
8 changed files with 13 additions and 13 deletions

View File

@@ -122,7 +122,7 @@ do_syslog(int pri, char *msg)
/* Advance p and eliminate leading whitespace */
for (p = tmp; *p == ' '; p++)
;
continue;
} else {
mysyslog(pri, fmt, user_name, p);
p += len;