summaryrefslogtreecommitdiffstats
path: root/include/xalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/xalloc.h')
-rw-r--r--include/xalloc.h14
1 files changed, 7 insertions, 7 deletions
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