From 717d6cc003c9d03c98d41bb23519aeb60ac2891a Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Wed, 22 May 2019 17:02:02 +0100 Subject: [PATCH] Correct the inotify failure message --- daemon/daemon_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/daemon_config.c b/daemon/daemon_config.c index d815cce..9602408 100644 --- a/daemon/daemon_config.c +++ b/daemon/daemon_config.c @@ -437,7 +437,7 @@ void config_init(GameModeConfig *self) self->inotfd = inotify_init1(IN_NONBLOCK); if (self->inotfd == -1) LOG_ERROR( - "inotify_init failed: %s, gamemode will be able to watch config files for edits!\n", + "inotify_init failed: %s, gamemode will not be able to watch config files for edits!\n", strerror(errno)); for (unsigned int i = 0; i < CONFIG_NUM_LOCATIONS; i++) {