]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virsh: fix a typo in a diagnostic
authorJim Meyering <meyering@redhat.com>
Tue, 11 May 2010 14:02:28 +0000 (16:02 +0200)
committerJim Meyering <meyering@redhat.com>
Tue, 11 May 2010 14:06:53 +0000 (16:06 +0200)
* tools/virsh.c (cmdSchedInfoUpdate): Fix typo in a diagnostic:
s/an long long/a long long/.  One in a comment, too.

tools/virsh.c

index 0a63f1bb23ac08bf233388d51c04b2bf8bb69d00..b9bf06d0abab8a8655d6da39ecbfef7b3143299e 100644 (file)
@@ -88,7 +88,7 @@ static char *progname;
 /**
  * vshErrorLevel:
  *
- * Indicates the level of an log message
+ * Indicates the level of a log message
  */
 typedef enum {
     VSH_ERR_DEBUG = 0,
@@ -1510,7 +1510,7 @@ cmdSchedInfoUpdate(vshControl *ctl, const vshCmd *cmd,
         case VIR_DOMAIN_SCHED_FIELD_LLONG:
             if (virStrToLong_ll(val, NULL, 10, &param->value.l) < 0) {
                 vshError(ctl, "%s",
-                         _("Invalid value for parameter, expecting an long long"));
+                         _("Invalid value for parameter, expecting a long long"));
                 return -1;
             }
             break;