[libvirt] [PATCH] virsh: fix a typo in a diagnostic

Jim Meyering jim at meyering.net
Tue May 11 14:07:27 UTC 2010


FYI, I've just pushed these two typo fixes:

>From 5603515127ff14b70bd6a24db1485043a6b817a7 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Tue, 11 May 2010 16:02:28 +0200
Subject: [PATCH] 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.
---
 tools/virsh.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virsh.c b/tools/virsh.c
index 0a63f1b..b9bf06d 100644
--- a/tools/virsh.c
+++ b/tools/virsh.c
@@ -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;
--
1.7.1.189.g07419




More information about the libvir-list mailing list