From: Denis Vlasenko Date: Fri, 23 May 2008 20:36:33 +0000 (-0000) Subject: mdev: fix whitespace damage X-Git-Tag: 1_11_0~187 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ff9234948eac3925b8881ab0f05402e95a339f0f;p=oweals%2Fbusybox.git mdev: fix whitespace damage --- diff --git a/util-linux/mdev.c b/util-linux/mdev.c index a4d6dfdf9..bf07aebb3 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);