From 04e97024e78f452526f710a5b3969c78a65f2b33 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Sat, 29 Jan 2000 07:06:24 +0000 Subject: Clear up some ambiguity with old style assignments. -Erik --- util-linux/mount.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util-linux') diff --git a/util-linux/mount.c b/util-linux/mount.c index 4b0901f..4c9e77b 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; } -- cgit v1.1