From f54a736f2f928c1eb8aa10fcf7d8c4c99e3d8255 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 7 Oct 2009 00:04:08 +0200 Subject: [PATCH] wipefs: fix coding style Signed-off-by: Karel Zak --- misc-utils/wipefs.c | 6 ++++-- 1 file 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)