fstools: use -Wno-format-truncation instead of -Wno-error=format-truncation
[project/fstools.git] / libblkid-tiny / mkdev.c
index 3d067b2..a35722b 100644 (file)
  * GNU General Public License for more details.
  */
 
-#define _BSD_SOURCE
+#define _DEFAULT_SOURCE
 
 #include <sys/stat.h>
 #include <sys/types.h>
+#include <sys/sysmacros.h>
 
 #include <stdio.h>
 #include <string.h>
@@ -88,7 +89,6 @@ int mkblkdev(void)
 
        mode = 0600;
        find_devs(true);
-       chdir("/");
 
-       return 0;
+       return chdir("/");
 }