diff options
Diffstat (limited to 'src/rc/fstabinfo.c')
-rw-r--r-- | src/rc/fstabinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rc/fstabinfo.c b/src/rc/fstabinfo.c index d1cd4323..b32ee2e4 100644 --- a/src/rc/fstabinfo.c +++ b/src/rc/fstabinfo.c @@ -98,10 +98,10 @@ static int do_mount(struct ENT *ent) pid_t pid; int status; - argv[0] = (char *) "mount"; - argv[1] = (char *) "-o"; + argv[0] = UNCONST("mount"); + argv[1] = UNCONST("-o"); argv[2] = ENT_OPTS(*ent); - argv[3] = (char *) "-t"; + argv[3] = UNCONST("-t"); argv[4] = ENT_TYPE(*ent); argv[5] = ENT_BLOCKDEVICE(*ent); argv[6] = ENT_FILE(*ent); |