提交 56035151 编写于 作者: J Jim Meyering

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.
上级 78a6af1f
...@@ -88,7 +88,7 @@ static char *progname; ...@@ -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, ...@@ -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, &param->value.l) < 0) { if (virStrToLong_ll(val, NULL, 10, &param->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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册