summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/usr.bin/openssl/speed.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr.bin/openssl/speed.c b/src/usr.bin/openssl/speed.c
index 4248c09d8e..935d9556e7 100644
--- a/src/usr.bin/openssl/speed.c
+++ b/src/usr.bin/openssl/speed.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: speed.c,v 1.9 2015/08/22 16:36:05 jsing Exp $ */ 1/* $OpenBSD: speed.c,v 1.10 2015/09/11 09:38:30 deraadt Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -153,7 +153,7 @@
153#include "./testdsa.h" 153#include "./testdsa.h"
154#include "./testrsa.h" 154#include "./testrsa.h"
155 155
156#define BUFSIZE ((long)1024*8+1) 156#define BUFSIZE (1024*8+1)
157int run = 0; 157int run = 0;
158 158
159static int mr = 0; 159static int mr = 0;
@@ -485,11 +485,11 @@ speed_main(int argc, char **argv)
485 for (i = 0; i < RSA_NUM; i++) 485 for (i = 0; i < RSA_NUM; i++)
486 rsa_key[i] = NULL; 486 rsa_key[i] = NULL;
487 487
488 if ((buf = malloc((int) BUFSIZE)) == NULL) { 488 if ((buf = malloc(BUFSIZE)) == NULL) {
489 BIO_printf(bio_err, "out of memory\n"); 489 BIO_printf(bio_err, "out of memory\n");
490 goto end; 490 goto end;
491 } 491 }
492 if ((buf2 = malloc((int) BUFSIZE)) == NULL) { 492 if ((buf2 = malloc(BUFSIZE)) == NULL) {
493 BIO_printf(bio_err, "out of memory\n"); 493 BIO_printf(bio_err, "out of memory\n");
494 goto end; 494 goto end;
495 } 495 }