standardize on "return foo;" rather than "return(foo);" or "return (foo);"

This commit is contained in:
Todd C. Miller
2011-01-24 15:15:18 -05:00
parent 3316ac8ebc
commit ae2f7638f5
68 changed files with 843 additions and 843 deletions

View File

@@ -46,7 +46,7 @@ strlcat(char *dst, const char *src, size_t siz)
n = siz - dlen;
if (n == 0)
return(dlen + strlen(s));
return dlen + strlen(s);
while (*s != '\0') {
if (n != 1) {
*d++ = *s;
@@ -56,5 +56,5 @@ strlcat(char *dst, const char *src, size_t siz)
}
*d = '\0';
return(dlen + (s - src)); /* count does not include NUL */
return dlen + (s - src); /* count does not include NUL */
}