diff options
Diffstat (limited to 'udev_utils_file.c')
-rw-r--r-- | udev_utils_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/udev_utils_file.c b/udev_utils_file.c index acaffdc918..6a046e822d 100644 --- a/udev_utils_file.c +++ b/udev_utils_file.c @@ -49,7 +49,7 @@ int create_path(const char *path) pos[0] = '\0'; dbg("stat '%s'\n", p); - if (stat (p, &stats) == 0 && (stats.st_mode & S_IFMT) == S_IFDIR) + if (stat(p, &stats) == 0 && (stats.st_mode & S_IFMT) == S_IFDIR) return 0; if (create_path (p) != 0) |