From 5701282e98bf78647193ab3a2dc7ea695ac32c6a Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 9 Jul 2004 11:49:04 -0400 Subject: [PATCH] ERR: Fixed missing return warning. Code was not reachable anyway. --- Source/kwsys/ProcessUNIX.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index e02fbfbd6e..c5e0adae00 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -1824,6 +1824,7 @@ static pid_t kwsysProcessFork(kwsysProcess* cp, /* Exit without cleanup. The parent holds all resources. */ _exit(0); + return 0; /* Never reached, but avoids SunCC warning. */ } } else