diff options
author | Denis Vlasenko | 2008-05-23 20:36:33 +0000 |
---|---|---|
committer | Denis Vlasenko | 2008-05-23 20:36:33 +0000 |
commit | ff9234948eac3925b8881ab0f05402e95a339f0f (patch) | |
tree | 230d42bf9f0e5383548b923b45cc3dff10c26fd9 /util-linux | |
parent | cf575ca8561c53ef8299e9efcebb9dce96de2ff0 (diff) | |
download | busybox-ff9234948eac3925b8881ab0f05402e95a339f0f.zip busybox-ff9234948eac3925b8881ab0f05402e95a339f0f.tar.gz |
mdev: fix whitespace damage
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index a4d6dfd..bf07aeb 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -273,7 +273,7 @@ static void make_device(char *path, int delete) /* move the device, and optionally * make a symlink to moved device node */ - if (rename(device_name, alias) == 0 && aliaslink == '>') + if (rename(device_name, alias) == 0 && aliaslink == '>') symlink(alias, device_name); free(alias); |