From de72a808a5699a4c6ded5b82c563da0b237d107e Mon Sep 17 00:00:00 2001 From: Kevin Coffman Date: Fri, 12 Oct 2007 16:34:44 -0400 Subject: [PATCH 1/1] 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 Signed-off-by: Neil Brown --- utils/gssd/svcgssd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2