From 8badbce50fdf6f49f8178c064c73f5e0f39174a9 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Fri, 11 Feb 2011 11:17:08 +1100 Subject: [PATCH] fix function declaration for daemon_is_ready() --- ccan/daemon-with-notify/daemon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ccan/daemon-with-notify/daemon.c b/ccan/daemon-with-notify/daemon.c index d730c3d0..625d6557 100644 --- a/ccan/daemon-with-notify/daemon.c +++ b/ccan/daemon-with-notify/daemon.c @@ -50,7 +50,7 @@ void sigusr1_handler(int sig) _exit(EXIT_SUCCESS); } -int daemon_is_ready() +int daemon_is_ready(void) { kill(parent_pid, SIGUSR1); return 0; -- 2.39.2