From a5873a8d3d456b0c736caf4fc1d1b80bbc1f3389 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Tue, 14 Oct 2008 19:05:02 +0000 Subject: [PATCH] Fix warnings. --- fips/dsa/fips_dssvs.c | 2 +- fips/rand/fips_rngvs.c | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/fips/dsa/fips_dssvs.c b/fips/dsa/fips_dssvs.c index 41515e571a..aa74e8e636 100644 --- a/fips/dsa/fips_dssvs.c +++ b/fips/dsa/fips_dssvs.c @@ -3,7 +3,7 @@ #ifndef OPENSSL_FIPS #include -int main() +int main(int argc, char **argv) { printf("No FIPS DSA support\n"); return(0); diff --git a/fips/rand/fips_rngvs.c b/fips/rand/fips_rngvs.c index 5b454aa7d1..cb904eaf0b 100644 --- a/fips/rand/fips_rngvs.c +++ b/fips/rand/fips_rngvs.c @@ -11,7 +11,8 @@ #ifndef OPENSSL_FIPS #include -int main() + +int main(int argc, char **argv) { printf("No FIPS RNG support\n"); return 0; -- 2.25.1