Make insmod quiet by default (patch from Yann E. Morin).
[oweals/busybox.git] / e2fsprogs / e2p / uuid.c
index fef3b91e77b769da6ba6ad670a58eec468b2d028..9feca4cfab9723bde675eefab9bac1a34643b1dc 100644 (file)
@@ -4,7 +4,7 @@
 
 #include <stdio.h>
 #include <string.h>
-#include <ext2fs/ext2_types.h>
+#include "../ext2fs/ext2_types.h"
 
 #include "e2p.h"
 
@@ -70,10 +70,8 @@ void e2p_uuid_to_str(void *uu, char *out)
 const char *e2p_uuid2str(void *uu)
 {
        static char buf[80];
-
        if (e2p_is_null_uuid(uu))
                return "<none>";
        e2p_uuid_to_str(uu, buf);
        return buf;
 }
-