Browse Source

Correct the inotify failure message

Marc Di Luzio 5 years ago
parent
commit
717d6cc003
1 changed files with 1 additions and 1 deletions
  1. 1 1
      daemon/daemon_config.c

+ 1 - 1
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++) {