In usr.sbin/sade/install.c and usr.sbin/sade/label.c, fix a few warnings
about format strings not being literals. MFC after: 1 week
This commit is contained in:
parent
4c14050c9d
commit
7b910e702a
@ -104,10 +104,10 @@ performNewfs(PartInfo *pi, char *dname, int queue)
|
||||
}
|
||||
|
||||
if (queue == QUEUE_YES) {
|
||||
command_shell_add(pi->mountpoint, buffer);
|
||||
command_shell_add(pi->mountpoint, "%s", buffer);
|
||||
return (0);
|
||||
} else
|
||||
return (vsystem(buffer));
|
||||
return (vsystem("%s", buffer));
|
||||
}
|
||||
return (0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user