diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-31 12:11:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-31 12:14:41 +0200 |
commit | 237d62284f3d2d5a03b985623f6dc5c338367c9c (patch) | |
tree | 04b01565b7ac29d8c671f1b8c9630902271d46b0 /svl | |
parent | 3fe9d25e32cf78b572fc6d99f2022f963cd3daae (diff) |
loplugin:constparams: svl (clang-cl)
Change-Id: Iddeb46c10046a83708ccff82e7125c36ed27c34d
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/crypto/cryptosign.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/crypto/cryptosign.cxx b/svl/source/crypto/cryptosign.cxx index 44175c53961c..91158e72b3c1 100644 --- a/svl/source/crypto/cryptosign.cxx +++ b/svl/source/crypto/cryptosign.cxx @@ -751,7 +751,7 @@ const unsigned nASN1_TAGGED_CONSTRUCTED = 0xa0; const unsigned nASN1_CONSTRUCTED = 0x20; /// Create payload for the 'signing-certificate' signed attribute. -bool CreateSigningCertificateAttribute(void* pDerEncoded, int nDerEncoded, PCCERT_CONTEXT pCertContext, SvStream& rEncodedCertificate) +bool CreateSigningCertificateAttribute(void const * pDerEncoded, int nDerEncoded, PCCERT_CONTEXT pCertContext, SvStream& rEncodedCertificate) { // CryptEncodeObjectEx() does not support encoding arbitrary ASN.1 // structures, like SigningCertificateV2 from RFC 5035, so let's build it |