Skip to content

Commit

Permalink
fix missing *
Browse files Browse the repository at this point in the history
  • Loading branch information
cps-b committed Nov 30, 2023
1 parent ff69341 commit 154a486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/openssl_lib_mock.h
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ class OpenSSLLibMockInterface
class OpenSSLLibMock : public OpenSSLLibMockInterface
{
public:
MOCK_METHOD3(SSL_OSSL_PARAM_construct_utf8_string, OSSL_PARAM(const char, char *, size_t));
MOCK_METHOD3(SSL_OSSL_PARAM_construct_utf8_string, OSSL_PARAM(const char *, char *, size_t));
MOCK_METHOD0(SSL_OSSL_PARAM_construct_end, OSSL_PARAM());
MOCK_METHOD2(SSL_OPENSSL_cleanse, void(void *, size_t));
MOCK_METHOD1(SSL_EVP_PKEY_bits, int(EVP_PKEY *));
Expand Down

0 comments on commit 154a486

Please sign in to comment.