Skip to content

Commit

Permalink
fix warnings (one of them was clearly justified)
Browse files Browse the repository at this point in the history
  • Loading branch information
45264 committed Dec 7, 2001
1 parent f3e24ba commit 87166e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/speed.c
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ int MAIN(int argc, char **argv)
ENGINE *e;
unsigned char *buf=NULL,*buf2=NULL;
int mret=1;
long count,rsa_count,save_count=0;
long count=0,rsa_count,save_count=0;
int i,j,k;
#ifndef OPENSSL_NO_RSA
unsigned rsa_num;
Expand Down Expand Up @@ -424,7 +424,7 @@ int MAIN(int argc, char **argv)
#define D_CBC_BF 13
#define D_CBC_CAST 14
#define D_EVP 15
double d;
double d=0;
long c[ALGOR_NUM][SIZE_NUM];
#define R_DSA_512 0
#define R_DSA_1024 1
Expand Down Expand Up @@ -1501,7 +1501,7 @@ int MAIN(int argc, char **argv)
#endif
#ifdef HZ
#define as_string(s) (#s)
printf("HZ=%g", HZ);
printf("HZ=%g", (double)HZ);
# ifdef _SC_CLK_TCK
printf(" [sysconf value]");
# endif
Expand Down

0 comments on commit 87166e1

Please sign in to comment.