2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-05 00:35:14 +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

@@ -49,7 +49,7 @@ sudo_strlcpy(char *dst, const char *src, size_t dsize)
if (dsize != 0)
*dst = '\0'; /* NUL-terminate dst */
while (*src++)
;
continue;
}
return(src - osrc - 1); /* count does not include NUL */