diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-29 01:19:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-29 01:19:15 +0000 |
commit | 9504e444b8c6269838b0035f95454db935fa68dd (patch) | |
tree | b63bddb1040acafcbe0f2ae4669553ed6c804fd9 /util-linux/mdev.c | |
parent | c3a9dc8ac5b1938652ab1c48859d1cb71c6cbaa1 (diff) | |
download | busybox-w32-9504e444b8c6269838b0035f95454db935fa68dd.tar.gz busybox-w32-9504e444b8c6269838b0035f95454db935fa68dd.tar.bz2 busybox-w32-9504e444b8c6269838b0035f95454db935fa68dd.zip |
whitespace fixes, no code changes
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r-- | util-linux/mdev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index 5ac801555..34cabc934 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c | |||
@@ -101,9 +101,9 @@ static void make_device(char *path, int delete) | |||
101 | * "/sys/block/..." is for block devices. "/sys/bus" etc is not. | 101 | * "/sys/block/..." is for block devices. "/sys/bus" etc is not. |
102 | * But since 2.6.25 block devices are also in /sys/class/block. | 102 | * But since 2.6.25 block devices are also in /sys/class/block. |
103 | * We use strstr("/block/") to forestall future surprises. */ | 103 | * We use strstr("/block/") to forestall future surprises. */ |
104 | type = S_IFCHR; | 104 | type = S_IFCHR; |
105 | if (strstr(path, "/block/")) | 105 | if (strstr(path, "/block/")) |
106 | type = S_IFBLK; | 106 | type = S_IFBLK; |
107 | 107 | ||
108 | #if ENABLE_FEATURE_MDEV_CONF | 108 | #if ENABLE_FEATURE_MDEV_CONF |
109 | parser = config_open2("/etc/mdev.conf", fopen_for_read); | 109 | parser = config_open2("/etc/mdev.conf", fopen_for_read); |