From: Guus Sliepen Date: Sat, 8 Jun 2013 11:44:29 +0000 (+0200) Subject: Fix a typo. X-Git-Tag: release-1.0.22~6 X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=commitdiff_plain;h=724d79e88051b9c50704424c1cda2cedcf87dba0 Fix a typo. --- diff --git a/src/process.c b/src/process.c index 020dfa0..e487e34 100644 --- a/src/process.c +++ b/src/process.c @@ -254,7 +254,7 @@ static bool write_pidfile(void) { /* if it's locked, write-protected, or whatever */ if(!write_pid(pidfilename)) { - fprintf(stderr, "Could write pid file %s: %s\n", pidfilename, strerror(errno)); + fprintf(stderr, "Couldn't write pid file %s: %s\n", pidfilename, strerror(errno)); return false; }