summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2009-12-15 14:23:05 -0500
committerStephen Gallagher <sgallagh@redhat.com>2009-12-15 15:38:41 -0500
commitc4a365aaa6c51d3d1dd5e7604e4d7c5822174177 (patch)
tree1b85f2d94a516920d76f316ea295e74514048936 /server
parent65d52fd13dcfb2cbab9af17b7db7e803c504e083 (diff)
downloadsssd-c4a365aaa6c51d3d1dd5e7604e4d7c5822174177.tar.gz
sssd-c4a365aaa6c51d3d1dd5e7604e4d7c5822174177.tar.xz
sssd-c4a365aaa6c51d3d1dd5e7604e4d7c5822174177.zip
Fix warning in server.c
Function definition was missing "void" to denote that it took no arguments.
Diffstat (limited to 'server')
-rw-r--r--server/util/server.c2
1 files changed, 1 insertions, 1 deletions
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;