diff options
author | Syrone Wong <wong.syrone@gmail.com> | 2021-07-13 04:04:56 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-07-14 06:57:03 +0200 |
commit | 4e0383d8519373372c899380842adad7ef887e16 (patch) | |
tree | 70ccae8317a0113507f59f253c872583de88e207 /include | |
parent | Avoid empty lines in nmake rule bodies (diff) | |
download | openssl-4e0383d8519373372c899380842adad7ef887e16.tar.xz openssl-4e0383d8519373372c899380842adad7ef887e16.zip |
Fix OSSL_TRACE9 missing arg9
Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
CLA: trivial
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16060)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/trace.h b/include/openssl/trace.h index b3a29ea8c4..2820013367 100644 --- a/include/openssl/trace.h +++ b/include/openssl/trace.h @@ -302,7 +302,7 @@ void OSSL_trace_end(int category, BIO *channel); OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7)) # define OSSL_TRACE8(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)) -# define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ +# define OSSL_TRACE9(category, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ OSSL_TRACEV(category, (trc_out, format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)) # ifdef __cplusplus |