aboutsummaryrefslogtreecommitdiff
path: root/mount.c
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 /mount.c
parenta6d0dbc86fd8a84f9c2a05f77013bd3eb5efa697 (diff)
downloadbusybox-04e97024e78f452526f710a5b3969c78a65f2b33.tar.gz
Clear up some ambiguity with old style assignments.
-Erik
Diffstat (limited to 'mount.c')
-rw-r--r--mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mount.c b/mount.c
index 4b0901f2a..4c9e77be0 100644
--- a/mount.c
+++ b/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;
}