Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-29 10:06:24 +0300
committerErik Andersen <andersen@codepoet.org>2000-01-29 10:06:24 +0300
commit04e97024e78f452526f710a5b3969c78a65f2b33 (patch)
treed5eba84927f0426038db2a1ef3b8b241996fd420 /util-linux
parenta6d0dbc86fd8a84f9c2a05f77013bd3eb5efa697 (diff)
Clear up some ambiguity with old style assignments.
-Erik
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 4b0901f2a..4c9e77be0 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -354,9 +354,9 @@ extern int mount_main (int argc, char **argv)
}
} else {
if (device == NULL)
- device=*argv;
+ device = *argv;
else if (directory == NULL)
- directory=*argv;
+ directory = *argv;
else {
goto goodbye;
}