summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--misc-utils/wipefs.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/misc-utils/wipefs.c b/misc-utils/wipefs.c
index b34ecfaef..5ed7f8ff4 100644
--- a/misc-utils/wipefs.c
+++ b/misc-utils/wipefs.c
@@ -133,7 +133,8 @@ add_offset(struct wipe_desc *wp0, loff_t offset, int zap)
return wp;
}
-static inline void *xmalloc(size_t sz)
+static inline void *
+xmalloc(size_t sz)
{
void *x = malloc(sz);
if (!x)
@@ -141,7 +142,8 @@ static inline void *xmalloc(size_t sz)
return x;
}
-static inline char *xstrdup(const char *s)
+static inline char *
+xstrdup(const char *s)
{
char *x = strdup(s);
if (!x)