diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-08-31 12:12:05 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-08-31 14:27:38 +0200 |
commit | 239e65474fe03dd2f9c6ca7e9ccc4554c20297b1 (patch) | |
tree | 73589de0603c96864a552376018ad88d1d763e4d /sal | |
parent | 98ad9ec18ee63d6b97b4b90917113656450b81fd (diff) |
-Werror,-Wunused-parameter
(--disable-assert-always-abort --enable-cipher-openssl-backend)
Change-Id: I0cf10fd6c788432a3312048cbde31ccc6f8fcbad
Reviewed-on: https://gerrit.libreoffice.org/59860
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/cipher.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sal/rtl/cipher.cxx b/sal/rtl/cipher.cxx index 3041d865b7b0..df0631b928d7 100644 --- a/sal/rtl/cipher.cxx +++ b/sal/rtl/cipher.cxx @@ -715,6 +715,7 @@ static rtlCipherError BF_update( /* Update. */ #if defined LIBO_CIPHER_OPENSSL_BACKEND assert(eMode == rtl_Cipher_ModeStream); + (void) eMode; (void) eDirection; while (nDatLen > std::numeric_limits<int>::max()) { int outl; |