diff options
author | Jason St. John <jstjohn@purdue.edu> | 2013-11-08 00:44:40 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-11-15 11:02:27 +1000 |
commit | 230bd5c2fd11f6256e1ab16c2e5997a8d8228461 (patch) | |
tree | ab33d063641bb3f8f3998caa3aea4db92d8989b7 /src/common | |
parent | b7b3f9c5e7903272bef32792ab28615f434d3ec8 (diff) | |
download | pacman-230bd5c2fd11f6256e1ab16c2e5997a8d8228461.tar.xz |
Fix whitespace and other formatting issues
This commit:
-- replaces space-based indents with tabs per the coding standards
-- removes extraneous whitespace (e.g. extra spaces between function args)
-- adds missing braces for a one-line if statement
Signed-off-by: Jason St. John <jstjohn@purdue.edu>
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/util-common.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/src/common/util-common.c b/src/common/util-common.c index 40623b92..e4a9de91 100644 --- a/src/common/util-common.c +++ b/src/common/util-common.c @@ -82,9 +82,9 @@ char *mdirname(const char *path) */ static size_t strnlen(const char *s, size_t max) { - register const char *p; - for(p = s; *p && max--; ++p); - return (p - s); + register const char *p; + for(p = s; *p && max--; ++p); + return (p - s); } /** Copies a string. @@ -95,14 +95,15 @@ static size_t strnlen(const char *s, size_t max) */ char *strndup(const char *s, size_t n) { - size_t len = strnlen(s, n); - char *new = (char *) malloc(len + 1); + size_t len = strnlen(s, n); + char *new = (char *) malloc(len + 1); - if(new == NULL) - return NULL; + if(new == NULL) { + return NULL; + } - new[len] = '\0'; - return (char *)memcpy(new, s, len); + new[len] = '\0'; + return (char *)memcpy(new, s, len); } #endif |