mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
virsh: fix a typo in a diagnostic
* tools/virsh.c (cmdSchedInfoUpdate): Fix typo in a diagnostic: s/an long long/a long long/. One in a comment, too.
This commit is contained in:
parent
78a6af1ff9
commit
5603515127
@ -88,7 +88,7 @@ static char *progname;
|
|||||||
/**
|
/**
|
||||||
* vshErrorLevel:
|
* vshErrorLevel:
|
||||||
*
|
*
|
||||||
* Indicates the level of an log message
|
* Indicates the level of a log message
|
||||||
*/
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
VSH_ERR_DEBUG = 0,
|
VSH_ERR_DEBUG = 0,
|
||||||
@ -1510,7 +1510,7 @@ cmdSchedInfoUpdate(vshControl *ctl, const vshCmd *cmd,
|
|||||||
case VIR_DOMAIN_SCHED_FIELD_LLONG:
|
case VIR_DOMAIN_SCHED_FIELD_LLONG:
|
||||||
if (virStrToLong_ll(val, NULL, 10, ¶m->value.l) < 0) {
|
if (virStrToLong_ll(val, NULL, 10, ¶m->value.l) < 0) {
|
||||||
vshError(ctl, "%s",
|
vshError(ctl, "%s",
|
||||||
_("Invalid value for parameter, expecting an long long"));
|
_("Invalid value for parameter, expecting a long long"));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user