mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-31 14:25:15 +00:00
standardize on "return foo;" rather than "return(foo);" or "return (foo);"
This commit is contained in:
@@ -51,5 +51,5 @@ strlcpy(char *dst, const char *src, size_t siz)
|
||||
;
|
||||
}
|
||||
|
||||
return(s - src - 1); /* count does not include NUL */
|
||||
return s - src - 1; /* count does not include NUL */
|
||||
}
|
||||
|
Reference in New Issue
Block a user