fix s390 compile error due to missing comma.
authorShane Lontis <shane.lontis@oracle.com>
Mon, 18 Nov 2019 22:38:19 +0000 (08:38 +1000)
committerShane Lontis <shane.lontis@oracle.com>
Tue, 19 Nov 2019 00:38:05 +0000 (10:38 +1000)
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10467)

providers/implementations/ciphers/cipher_aes_hw_s390x.inc

index f60ca9cba8f6ac6aa304dd3f2ae969711472fe80..56e2dc9e3880f479471273c4b11d23ff7e8837d3 100644 (file)
@@ -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)                                            \