Corrected comment typo "count not" to "could not"
authorEric DeVolder <eric.devolder@oracle.com>
Wed, 21 Dec 2016 21:37:31 +0000 (13:37 -0800)
committerWei Liu <wei.liu2@citrix.com>
Thu, 22 Dec 2016 10:50:10 +0000 (10:50 +0000)
Fix cut-n-paste typo; changed the words "count not" to "could not".

No functional changes.

Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/libxc/xc_kexec.c

index 1cceb5d2d68f43fb2fa4dc2c9e5ffe31bb0a9e33..989e225192483a8f255f292c819994d89d75ccdc 100644 (file)
@@ -20,7 +20,7 @@ int xc_kexec_exec(xc_interface *xch, int type)
     exec = xc_hypercall_buffer_alloc(xch, exec, sizeof(*exec));
     if ( exec == NULL )
     {
-        PERROR("Count not alloc bounce buffer for kexec_exec hypercall");
+        PERROR("Could not alloc bounce buffer for kexec_exec hypercall");
         goto out;
     }
 
@@ -111,7 +111,7 @@ int xc_kexec_unload(xc_interface *xch, int type)
     unload = xc_hypercall_buffer_alloc(xch, unload, sizeof(*unload));
     if ( unload == NULL )
     {
-        PERROR("Count not alloc buffer for kexec unload hypercall");
+        PERROR("Could not alloc buffer for kexec unload hypercall");
         goto out;
     }