summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSyrone Wong <wong.syrone@gmail.com>2021-07-13 10:04:56 +0800
committerPauli <pauli@openssl.org>2021-07-14 14:57:03 +1000
commit4e0383d8519373372c899380842adad7ef887e16 (patch)
tree70ccae8317a0113507f59f253c872583de88e207 /include
parent53111a88ce5081f44a1775ddb11765491f115f50 (diff)
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.h2
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