summaryrefslogtreecommitdiffstats
path: root/providers/implementations
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-11-19 08:38:19 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-11-19 10:38:05 +1000
commitdbca036435e210348e73d43a8dad14f0de6a9a18 (patch)
tree4d444a7c4f2aa0a49b8e237ad681062fd71ae307 /providers/implementations
parent3f8907e459313f0b3df3b328f0a16db565fbcea0 (diff)
fix s390 compile error due to missing comma.
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10467)
Diffstat (limited to 'providers/implementations')
-rw-r--r--providers/implementations/ciphers/cipher_aes_hw_s390x.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_aes_hw_s390x.inc b/providers/implementations/ciphers/cipher_aes_hw_s390x.inc
index f60ca9cba8..56e2dc9e38 100644
--- a/providers/implementations/ciphers/cipher_aes_hw_s390x.inc
+++ b/providers/implementations/ciphers/cipher_aes_hw_s390x.inc
@@ -193,7 +193,7 @@ static int s390x_aes_cfb8_cipher_hw(PROV_CIPHER_CTX *dat, unsigned char *out,
#define PROV_CIPHER_HW_declare(mode) \
static const PROV_CIPHER_HW s390x_aes_##mode = { \
s390x_aes_##mode##_initkey, \
- s390x_aes_##mode##_cipher_hw \
+ s390x_aes_##mode##_cipher_hw, \
cipher_hw_aes_copyctx \
};
#define PROV_CIPHER_HW_select(mode) \