summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorPaul Yang <paulyang.inf@gmail.com>2017-06-06 23:35:43 +0800
committerRich Salz <rsalz@openssl.org>2017-06-09 12:04:10 -0400
commitbd91e3c870402c4b10909c47082daece473d22ef (patch)
tree9e29571095ab06298da2b312b9c350781f55b8d1 /demos
parent9a2dfc0febaf89403cdbd4bfdb2417fd3d055e95 (diff)
Fix a bundle of trailing spaces in several files
Signed-off-by: Paul Yang <paulyang.inf@gmail.com> Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3622)
Diffstat (limited to 'demos')
-rw-r--r--demos/evp/aesgcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/evp/aesgcm.c b/demos/evp/aesgcm.c
index df59f469fd..46d9a5639b 100644
--- a/demos/evp/aesgcm.c
+++ b/demos/evp/aesgcm.c
@@ -102,7 +102,7 @@ void aes_gcm_decrypt(void)
printf("Plaintext:\n");
BIO_dump_fp(stdout, outbuf, outlen);
/* Set expected tag value. */
- EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag),
+ EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, sizeof(gcm_tag),
(void *)gcm_tag);
/* Finalise: note get no output for GCM */
rv = EVP_DecryptFinal_ex(ctx, outbuf, &outlen);