diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-18 18:05:28 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2021-11-18 18:05:28 +0000 |
commit | fb44443de317187d58e89a7464de1d1027d232fc (patch) | |
tree | 5db7bd1be1925138c013573bd218ec171837b4df /lib | |
parent | 50f92d90b48d83c3907ae67767ea0407906f3180 (diff) |
Add semicolon that will become non-optional once BN_GENCB_set() will
move from an awful macro to a proper function.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/evp/pmeth_gn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/pmeth_gn.c b/lib/libcrypto/evp/pmeth_gn.c index d1cbdc409f6..7f5311aff9f 100644 --- a/lib/libcrypto/evp/pmeth_gn.c +++ b/lib/libcrypto/evp/pmeth_gn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmeth_gn.c,v 1.6 2017/01/29 17:49:23 beck Exp $ */ +/* $OpenBSD: pmeth_gn.c,v 1.7 2021/11/18 18:05:27 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -187,7 +187,7 @@ trans_cb(int a, int b, BN_GENCB *gcb) void evp_pkey_set_cb_translate(BN_GENCB *cb, EVP_PKEY_CTX *ctx) { - BN_GENCB_set(cb, trans_cb, ctx) + BN_GENCB_set(cb, trans_cb, ctx); } int |