diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-25 09:53:17 +0000 |
commit | 7049ff8696c3c2a1be0f9901d7e2473568b8f918 (patch) | |
tree | c952ee767508bb76c25d6269a298aa16cad99b82 /util-linux/mdev.c | |
parent | f26e3d2e41cc7d2fabcf5c2e777306c36a8d5868 (diff) | |
download | busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.gz busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.tar.bz2 busybox-w32-7049ff8696c3c2a1be0f9901d7e2473568b8f918.zip |
whitespace fixes. no code changes
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r-- | util-linux/mdev.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index 057b9e4ff..e1edd2073 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c | |||
@@ -300,9 +300,9 @@ static void make_device(char *path, int delete) | |||
300 | 300 | ||
301 | /* File callback for /sys/ traversal */ | 301 | /* File callback for /sys/ traversal */ |
302 | static int fileAction(const char *fileName, | 302 | static int fileAction(const char *fileName, |
303 | struct stat *statbuf ATTRIBUTE_UNUSED, | 303 | struct stat *statbuf ATTRIBUTE_UNUSED, |
304 | void *userData, | 304 | void *userData, |
305 | int depth ATTRIBUTE_UNUSED) | 305 | int depth ATTRIBUTE_UNUSED) |
306 | { | 306 | { |
307 | size_t len = strlen(fileName) - 4; /* can't underflow */ | 307 | size_t len = strlen(fileName) - 4; /* can't underflow */ |
308 | char *scratch = userData; | 308 | char *scratch = userData; |
@@ -320,9 +320,9 @@ static int fileAction(const char *fileName, | |||
320 | 320 | ||
321 | /* Directory callback for /sys/ traversal */ | 321 | /* Directory callback for /sys/ traversal */ |
322 | static int dirAction(const char *fileName ATTRIBUTE_UNUSED, | 322 | static int dirAction(const char *fileName ATTRIBUTE_UNUSED, |
323 | struct stat *statbuf ATTRIBUTE_UNUSED, | 323 | struct stat *statbuf ATTRIBUTE_UNUSED, |
324 | void *userData ATTRIBUTE_UNUSED, | 324 | void *userData ATTRIBUTE_UNUSED, |
325 | int depth) | 325 | int depth) |
326 | { | 326 | { |
327 | return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE); | 327 | return (depth >= MAX_SYSFS_DEPTH ? SKIP : TRUE); |
328 | } | 328 | } |