From: Eric DeVolder Date: Wed, 21 Dec 2016 21:37:31 +0000 (-0800) Subject: Corrected comment typo "count not" to "could not" X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3081 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=328d07cb5c07c46306b52424da574c1aef615937;p=xen.git Corrected comment typo "count not" to "could not" Fix cut-n-paste typo; changed the words "count not" to "could not". No functional changes. Signed-off-by: Eric DeVolder Reviewed-by: Konrad Rzeszutek Wilk Acked-by: Wei Liu --- diff --git a/tools/libxc/xc_kexec.c b/tools/libxc/xc_kexec.c index 1cceb5d2d6..989e225192 100644 --- a/tools/libxc/xc_kexec.c +++ b/tools/libxc/xc_kexec.c @@ -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; }