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>
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;
}
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;
}