From ca6f9175288ddd76637525f2732e0bebd59ea520 Mon Sep 17 00:00:00 2001 From: Ricardo Buring Date: Mon, 8 Mar 2010 15:21:34 -0500 Subject: [PATCH] conkeror-spawn-helper, main: always return an int --- conkeror-spawn-helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conkeror-spawn-helper.c b/conkeror-spawn-helper.c index d3ffbc4..aae5b14 100644 --- a/conkeror-spawn-helper.c +++ b/conkeror-spawn-helper.c @@ -375,11 +375,11 @@ int main(int argc, char **argv) { if (count == 0) { /* End of file received: exit without killing child */ - return; + return 0; } /* Assume msg == 0 until we support more messages */ TRY(count, kill(child_pid, SIGTERM)); - return; + return 0; } } -- 2.11.4.GIT