- don't free user-supplied string (via -e)
[oweals/busybox.git] / libbb / make_directory.c
index d540ad133dd913a1b1ab7ec42e01602009623c8e..5c71aff921421a6f9d55d598aa4b19b76d20ff5f 100644 (file)
@@ -26,7 +26,7 @@
 
 /* This function is used from NOFORK applets. It must not allocate anything */
 
-int bb_make_directory (char *path, long mode, int flags)
+int FAST_FUNC bb_make_directory(char *path, long mode, int flags)
 {
        mode_t mask;
        const char *fail_msg;
@@ -98,6 +98,6 @@ int bb_make_directory (char *path, long mode, int flags)
 
        } while (1);
 
-       bb_perror_msg ("cannot %s directory '%s'", fail_msg, path);
+       bb_perror_msg("cannot %s directory '%s'", fail_msg, path);
        return -1;
 }