From 4ad6939980a9c6e6fc12c78d9d4b0d2a69dcc01b Mon Sep 17 00:00:00 2001 From: "Jason St. John" Date: Mon, 22 Jul 2013 03:09:57 +0200 Subject: Fix whitespace in pacsort.c and pactree.c Replace spaces with tabs. Remove extra spaces. Signed-off-by: Jason St. John Signed-off-by: Allan McRae --- src/util/pacsort.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/util/pacsort.c') diff --git a/src/util/pacsort.c b/src/util/pacsort.c index 50b9c650..7c551c2b 100644 --- a/src/util/pacsort.c +++ b/src/util/pacsort.c @@ -26,7 +26,7 @@ #include -#define DELIM ' ' +#define DELIM ' ' struct buffer_t { char *mem; @@ -52,21 +52,21 @@ static struct options_t { /* A quick and dirty implementation derived from glibc */ 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); } 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 -- cgit v1.2.3-24-g4f1b