Fix typo in previous commit s/lik/like/

Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrange 2012-10-16 16:37:26 +01:00
parent d507f8f9b9
commit 7bd744c401
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ virProcessKillPainfully(pid_t pid, bool force)
VIR_DEBUG("Timed out waiting after SIGTERM to process %d, "
"sending SIGKILL", pid);
/* No SIGKILL kill on Win32 ! Use SIGABRT instead which our
* virProcessKill proc will handle more or less lik SIGKILL */
* virProcessKill proc will handle more or less like SIGKILL */
#ifdef WIN32
signum = SIGABRT; /* kill it after a grace period */
signame = "ABRT";