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:
Jim Meyering 2010-05-11 16:02:28 +02:00
parent 78a6af1ff9
commit 5603515127

View File

@ -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, &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;