From 12218ccde2d422ed425b7a5b0d9ab81769148419 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Thu, 29 Sep 2011 14:56:42 -0400 Subject: 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 --- include/xalloc.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/xalloc.h') diff --git a/include/xalloc.h b/include/xalloc.h index bea7e3194..feeb1144f 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 -- cgit v1.2.3-55-g7522