diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-15 14:23:05 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-12-15 15:37:30 -0500 |
commit | 9181325508c01abdb180a58fe16147925e33487a (patch) | |
tree | 55dc7aa471fab48c3f7d85f2c5b18d4ce9f62de9 /server | |
parent | 6c894b23802979397fc5dfb211ddc1cdd9bcf084 (diff) | |
download | sssd-9181325508c01abdb180a58fe16147925e33487a.tar.gz sssd-9181325508c01abdb180a58fe16147925e33487a.tar.xz sssd-9181325508c01abdb180a58fe16147925e33487a.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.c | 2 |
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; |