1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-28 13:00:45 +00:00

Exit properly when forking.

This commit is contained in:
Brenden Matthews 2009-07-19 14:55:41 -06:00
parent 4c41ec843a
commit e76f0c8587

View File

@ -9283,7 +9283,7 @@ void initialisation(int argc, char **argv) {
fprintf(stderr, PACKAGE_NAME": forked to background, pid is %d\n", fprintf(stderr, PACKAGE_NAME": forked to background, pid is %d\n",
pid); pid);
fflush(stderr); fflush(stderr);
return; exit(EXIT_SUCCESS);
} }
} }