From: Dave Reisner Date: Thu, 29 Sep 2011 18:56:42 +0000 (-0400) Subject: include,xalloc: fix whitespace to be consistent X-Git-Tag: v2.21-rc1~364 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12218ccde2d422ed425b7a5b0d9ab81769148419;p=thirdparty%2Futil-linux.git include,xalloc: fix whitespace to be consistent We use spaces for the rest of this file, so the random tabs within xstrdup stand out. Signed-off-by: Dave Reisner --- diff --git a/include/xalloc.h b/include/xalloc.h index bea7e31941..feeb1144f9 100644 --- a/include/xalloc.h +++ b/include/xalloc.h @@ -51,16 +51,16 @@ void *xcalloc(const size_t nelems, const size_t size) static inline char *xstrdup(const char *str) { - char *ret; + char *ret; - if (!str) - return NULL; + if (!str) + return NULL; - ret = strdup(str); + ret = strdup(str); - if (!ret) - err(XALLOC_EXIT_CODE, "cannot duplicate string"); - return ret; + if (!ret) + err(XALLOC_EXIT_CODE, "cannot duplicate string"); + return ret; } #endif