diff options
Diffstat (limited to 'lib/libssl/src/apps/dgst.c')
-rw-r--r-- | lib/libssl/src/apps/dgst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/dgst.c b/lib/libssl/src/apps/dgst.c index a862da98659..0dbb4c33350 100644 --- a/lib/libssl/src/apps/dgst.c +++ b/lib/libssl/src/apps/dgst.c @@ -129,7 +129,7 @@ dgst_main(int argc, char **argv) char *mac_name = NULL; STACK_OF(OPENSSL_STRING) * sigopts = NULL, *macopts = NULL; - if ((buf = (unsigned char *) malloc(BUFSIZE)) == NULL) { + if ((buf = malloc(BUFSIZE)) == NULL) { BIO_printf(bio_err, "out of memory\n"); goto end; } |