diff options
author | Simon Warta <[email protected]> | 2017-04-17 00:49:38 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-17 00:49:38 +0200 |
commit | e67807006351db310d8a67b9d5b6fe96eb144297 (patch) | |
tree | d873ada5515cb2228edf07148cae1fad7631ef9b /src/lib/tls/tls_callbacks.h | |
parent | bc79016a55a824ed5e8db346156dd8409f1fe5f3 (diff) |
Use 3 arg BOTAN_UNUSED in a codepath that is compiled often
just to verify the implementation works fine across platforms and
compilers
Diffstat (limited to 'src/lib/tls/tls_callbacks.h')
-rw-r--r-- | src/lib/tls/tls_callbacks.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/tls/tls_callbacks.h b/src/lib/tls/tls_callbacks.h index b20e60218..cccbb4f7e 100644 --- a/src/lib/tls/tls_callbacks.h +++ b/src/lib/tls/tls_callbacks.h @@ -188,9 +188,7 @@ class BOTAN_DLL Callbacks */ virtual void tls_log_debug_bin(const char* descr, const uint8_t val[], size_t val_len) { - BOTAN_UNUSED(descr); - BOTAN_UNUSED(val); - BOTAN_UNUSED(val_len); + BOTAN_UNUSED(descr, val, val_len); } }; |