From: Daniel P. Berrange Date: Tue, 16 Oct 2012 15:37:26 +0000 (+0100) Subject: Fix typo in previous commit s/lik/like/ X-Git-Tag: v1.0.0-rc1~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7bd744c4016bf063cd7f1ef519e94c638887588a;p=thirdparty%2Flibvirt.git Fix typo in previous commit s/lik/like/ Signed-off-by: Daniel P. Berrange --- diff --git a/src/util/virprocess.c b/src/util/virprocess.c index fee333f64d..4bb7ebc8ec 100644 --- a/src/util/virprocess.c +++ b/src/util/virprocess.c @@ -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";