Fix warnings.
This commit is contained in:
parent
4db3e88459
commit
a5873a8d3d
2 changed files with 3 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue