whitespace fixes, no code changes

This commit is contained in:
Denis Vlasenko
2008-10-29 01:19:15 +00:00
parent c3a9dc8ac5
commit 9504e444b8
4 changed files with 10 additions and 10 deletions

View File

@ -101,9 +101,9 @@ static void make_device(char *path, int delete)
* "/sys/block/..." is for block devices. "/sys/bus" etc is not.
* But since 2.6.25 block devices are also in /sys/class/block.
* We use strstr("/block/") to forestall future surprises. */
type = S_IFCHR;
type = S_IFCHR;
if (strstr(path, "/block/"))
type = S_IFBLK;
type = S_IFBLK;
#if ENABLE_FEATURE_MDEV_CONF
parser = config_open2("/etc/mdev.conf", fopen_for_read);