From b1edade6f89b9101ceedfb383b9938f3cb417921 Mon Sep 17 00:00:00 2001 From: nirgal Date: Thu, 29 Mar 2018 10:34:08 +0200 Subject: [PATCH] Fixed typo in error message --- src/rrd_daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2