A function returning int should really return an int, even if it exits
authorRichard Levitte <levitte@openssl.org>
Sat, 28 Dec 2002 01:47:11 +0000 (01:47 +0000)
committerRichard Levitte <levitte@openssl.org>
Sat, 28 Dec 2002 01:47:11 +0000 (01:47 +0000)
first...

crypto/dsa/dsatest.c

index 2361ad61cbb81c10027471053bac1fb531041458..2a25f3fe47535d6d71411f8791a37b7a06683d2b 100644 (file)
@@ -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)