From 9181325508c01abdb180a58fe16147925e33487a Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 15 Dec 2009 14:23:05 -0500 Subject: Fix warning in server.c Function definition was missing "void" to denote that it took no arguments. --- server/util/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server') diff --git a/server/util/server.c b/server/util/server.c index e8d26dcf0..fd6c46531 100644 --- a/server/util/server.c +++ b/server/util/server.c @@ -39,7 +39,7 @@ /******************************************************************* Close the low 3 fd's and open dev/null in their place. ********************************************************************/ -static void close_low_fds() +static void close_low_fds(void) { #ifndef VALGRIND int fd; -- cgit