clang-format fix

This commit is contained in:
Alex Smith 2019-10-22 12:41:37 +01:00
parent b2b09fbb83
commit 57efe440c3

View File

@ -268,7 +268,8 @@ static int run_gamemoderun_and_reaper_tests(struct GameModeConfig *config)
/* Close stdout, we don't care if sh prints anything */ /* Close stdout, we don't care if sh prints anything */
fclose(stdout); fclose(stdout);
/* Preload into sh and then kill it */ /* Preload into sh and then kill it */
if (execl("/usr/bin/gamemoderun", "/usr/bin/gamemoderun", "sleep", "5", (char *)NULL) == -1) { if (execl("/usr/bin/gamemoderun", "/usr/bin/gamemoderun", "sleep", "5", (char *)NULL) ==
-1) {
LOG_ERROR("failed to launch gamemoderun with execl: %s\n", strerror(errno)); LOG_ERROR("failed to launch gamemoderun with execl: %s\n", strerror(errno));
return -1; return -1;
} }