From: Shane Lontis Date: Mon, 18 Nov 2019 22:38:19 +0000 (+1000) Subject: fix s390 compile error due to missing comma. X-Git-Tag: openssl-3.0.0-alpha1~934 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=dbca036435e210348e73d43a8dad14f0de6a9a18;p=oweals%2Fopenssl.git fix s390 compile error due to missing comma. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/10467) --- 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) \