From e76f0c85871651adfc6c3c92125d898aea9ea1a4 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Sun, 19 Jul 2009 14:55:41 -0600 Subject: [PATCH] Exit properly when forking. --- src/conky.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conky.c b/src/conky.c index 9c73e38..ed77172 100644 --- a/src/conky.c +++ b/src/conky.c @@ -9283,7 +9283,7 @@ void initialisation(int argc, char **argv) { fprintf(stderr, PACKAGE_NAME": forked to background, pid is %d\n", pid); fflush(stderr); - return; + exit(EXIT_SUCCESS); } } -- 1.7.9.5