diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-19 15:04:45 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-08-19 15:04:45 +0200 |
commit | 7679145da52c1302fcbc434a6b3710f41f9303a8 (patch) | |
tree | 001b4d3f96e3c33465777fba4754c455d2907e76 /src/server/shared/Cryptography/OpenSSLCrypto.cpp | |
parent | dedeb5f9eb5f4c3a888e1dc2146b96c66bf5637f (diff) |
Core: Fix warning
Diffstat (limited to 'src/server/shared/Cryptography/OpenSSLCrypto.cpp')
-rw-r--r-- | src/server/shared/Cryptography/OpenSSLCrypto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Cryptography/OpenSSLCrypto.cpp b/src/server/shared/Cryptography/OpenSSLCrypto.cpp index e89bfbcecce..417be813347 100644 --- a/src/server/shared/Cryptography/OpenSSLCrypto.cpp +++ b/src/server/shared/Cryptography/OpenSSLCrypto.cpp @@ -23,7 +23,7 @@ std::vector<ACE_Thread_Mutex*> cryptoLocks; -static void lockingCallback(int mode, int type, const char */*file*/, int /*line*/) +static void lockingCallback(int mode, int type, const char* /*file*/, int /*line*/) { if (mode & CRYPTO_LOCK) cryptoLocks[type]->acquire(); |