aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Cryptography/OpenSSLCrypto.cpp
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2013-08-19 15:04:45 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2013-08-19 15:04:45 +0200
commit7679145da52c1302fcbc434a6b3710f41f9303a8 (patch)
tree001b4d3f96e3c33465777fba4754c455d2907e76 /src/server/shared/Cryptography/OpenSSLCrypto.cpp
parentdedeb5f9eb5f4c3a888e1dc2146b96c66bf5637f (diff)
Core: Fix warning
Diffstat (limited to 'src/server/shared/Cryptography/OpenSSLCrypto.cpp')
-rw-r--r--src/server/shared/Cryptography/OpenSSLCrypto.cpp2
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();