diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-19 14:14:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-19 14:14:12 +0000 |
commit | 85f9e32f7f00b4579abb60637495dcd3a8a8bce0 (patch) | |
tree | 248afb52bd9adf78d1183f1e2e01aaa6791e4ceb | |
parent | 23514fe251ce4c86c591936698537c005437e3d7 (diff) | |
download | busybox-85f9e32f7f00b4579abb60637495dcd3a8a8bce0.tar.gz |
mount: fstabname needs to be const char*
-rw-r--r-- | util-linux/mount.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c index 888e6d22f..ab20ab9fc 100644 --- a/util-linux/mount.c +++ b/util-linux/mount.c @@ -1432,7 +1432,8 @@ int mount_main(int argc, char **argv) enum { OPT_ALL = 0x8 }; char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0; - char *opt_o, *fstabname; + char *opt_o; + const char *fstabname; FILE *fstab; int i, j, rc = 0; unsigned long opt; @@ -1526,7 +1527,7 @@ int mount_main(int argc, char **argv) fstab = setmntent(fstabname,"r"); if (!fstab) - bb_perror_msg_and_die("cannot read %s",fstabname); + bb_perror_msg_and_die("cannot read %s", fstabname); // Loop through entries until we find what we're looking for. |