]> err.no Git - util-linux/commitdiff
wipefs: fix coding style
authorKarel Zak <kzak@redhat.com>
Tue, 6 Oct 2009 22:04:08 +0000 (00:04 +0200)
committerKarel Zak <kzak@redhat.com>
Tue, 6 Oct 2009 22:04:08 +0000 (00:04 +0200)
Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/wipefs.c

index b34ecfaef9260b2851c295a67729a14c18abb114..5ed7f8ff40ab31b22887c4117c854afd50f6346b 100644 (file)
@@ -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)