mount: fstabname needs to be const char*

This commit is contained in:
Denis Vlasenko 2006-09-19 14:14:12 +00:00
parent 23514fe251
commit 85f9e32f7f

View File

@ -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;