From: nirgal Date: Thu, 29 Mar 2018 08:34:08 +0000 (+0200) Subject: Fixed typo in error message X-Git-Tag: v1.7.1~59^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F882%2Fhead;p=thirdparty%2Frrdtool-1.x.git Fixed typo in error message --- diff --git a/src/rrd_daemon.c b/src/rrd_daemon.c index b061437c..02cd0520 100644 --- a/src/rrd_daemon.c +++ b/src/rrd_daemon.c @@ -591,7 +591,7 @@ static int check_pidfile(void) if (ftruncate(pid_fd, 0) == -1) { fprintf(stderr, - "FATAL: Faild to truncate stale PID file. (pid %d)\n", pid); + "FATAL: Failed to truncate stale PID file. (pid %d)\n", pid); close(pid_fd); return -1; }