diff options
author | Kevin Coffman <kwc@citi.umich.edu> | 2007-10-12 16:34:44 -0400 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2007-10-15 09:50:55 +1000 |
commit | de72a808a5699a4c6ded5b82c563da0b237d107e (patch) | |
tree | ca7ce6e0020d93488917eb7325d5ac3ca7b1792c | |
parent | da7454e3cf772edacc55a0f47d49cef7a03a4d10 (diff) | |
download | nfs-utils-de72a808a5699a4c6ded5b82c563da0b237d107e.tar.gz nfs-utils-de72a808a5699a4c6ded5b82c563da0b237d107e.tar.xz nfs-utils-de72a808a5699a4c6ded5b82c563da0b237d107e.zip |
Fix new warning after strict prototype checking enabled
Fix function declaration to eliminate compiler warning about it
not being a prototype after -Wstrict-prototypes was added.
Signed-off-by: Kevin Coffman <kwc@citi.umich.edu>
Signed-off-by: Neil Brown <neilb@suse.de>
-rw-r--r-- | utils/gssd/svcgssd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/gssd/svcgssd.c b/utils/gssd/svcgssd.c index 37e0407..4aa157d 100644 --- a/utils/gssd/svcgssd.c +++ b/utils/gssd/svcgssd.c @@ -125,7 +125,7 @@ mydaemon(int nochdir, int noclose) } static void -release_parent() +release_parent(void) { int status; |