A function returning int should really return an int, even if it exits

first...
This commit is contained in:
Richard Levitte
2002-12-28 01:47:11 +00:00
parent 84d964a59f
commit b2359d5116

View 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)