mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-10 05:17:59 +03:00
Fix build error in virsh.c
Another gettext string with no format args sent to printf as a format string.
This commit is contained in:
parent
14954fb8cb
commit
7c5f80e2f0
@ -11022,7 +11022,7 @@ vshParseArgv(vshControl *ctl, int argc, char **argv)
|
||||
switch (arg) {
|
||||
case 'd':
|
||||
if (virStrToLong_i(optarg, NULL, 10, &ctl->debug) < 0) {
|
||||
vshError(ctl, _("option -d takes a numeric argument"));
|
||||
vshError(ctl, "%s", _("option -d takes a numeric argument"));
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user