aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-01-29 07:06:24 +0000
committerErik Andersen <andersen@codepoet.org>2000-01-29 07:06:24 +0000
commit04e97024e78f452526f710a5b3969c78a65f2b33 (patch)
treed5eba84927f0426038db2a1ef3b8b241996fd420 /util-linux
parenta6d0dbc86fd8a84f9c2a05f77013bd3eb5efa697 (diff)
downloadbusybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.tar.gz
busybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.tar.bz2
busybox-w32-04e97024e78f452526f710a5b3969c78a65f2b33.zip
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)
354 } 354 }
355 } else { 355 } else {
356 if (device == NULL) 356 if (device == NULL)
357 device=*argv; 357 device = *argv;
358 else if (directory == NULL) 358 else if (directory == NULL)
359 directory=*argv; 359 directory = *argv;
360 else { 360 else {
361 goto goodbye; 361 goto goodbye;
362 } 362 }