From: Richard Levitte Date: Sat, 28 Dec 2002 01:47:11 +0000 (+0000) Subject: A function returning int should really return an int, even if it exits X-Git-Tag: OpenSSL_0_9_6i~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b2359d5116049b19b7205005c577f0891b563581;p=oweals%2Fopenssl.git A function returning int should really return an int, even if it exits first... --- diff --git a/crypto/dsa/dsatest.c b/crypto/dsa/dsatest.c index 2361ad61cb..2a25f3fe47 100644 --- a/crypto/dsa/dsatest.c +++ b/crypto/dsa/dsatest.c @@ -217,6 +217,7 @@ end: static int cb_exit(int ec) { EXIT(ec); + return(0); /* To keep some compilers quiet */ } static void MS_CALLBACK dsa_cb(int p, int n, void *arg)