Fix warnings.
authorBen Laurie <ben@openssl.org>
Tue, 14 Oct 2008 19:05:02 +0000 (19:05 +0000)
committerBen Laurie <ben@openssl.org>
Tue, 14 Oct 2008 19:05:02 +0000 (19:05 +0000)
fips/dsa/fips_dssvs.c
fips/rand/fips_rngvs.c

index 41515e571a2cfe004538d760278d42039cf367a1..aa74e8e636f6f0ecbf4d6c52fd88d3f7dbd1cacc 100644 (file)
@@ -3,7 +3,7 @@
 #ifndef OPENSSL_FIPS
 #include <stdio.h>
 
-int main()
+int main(int argc, char **argv)
 {
     printf("No FIPS DSA support\n");
     return(0);
index 5b454aa7d137cccaa27d1d3d99d79fa71672e662..cb904eaf0ba429ae913b84e685c6e9f9da7b5d3e 100644 (file)
@@ -11,7 +11,8 @@
 
 #ifndef OPENSSL_FIPS
 #include <stdio.h>
-int main()
+
+int main(int argc, char **argv)
 {
     printf("No FIPS RNG support\n");
     return 0;