summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ssl/ssl_backend_openssl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/ssl/ssl_backend_openssl.cpp b/src/core/hle/service/ssl/ssl_backend_openssl.cpp
index cf9b904ac..edbf0ad3e 100644
--- a/src/core/hle/service/ssl/ssl_backend_openssl.cpp
+++ b/src/core/hle/service/ssl/ssl_backend_openssl.cpp
@@ -226,7 +226,7 @@ public:
226 } 226 }
227 } 227 }
228 228
229 static long CtrlCallback(BIO* bio, int cmd, long larg, void* parg) { 229 static long CtrlCallback(BIO* bio, int cmd, long l_arg, void* p_arg) {
230 switch (cmd) { 230 switch (cmd) {
231 case BIO_CTRL_FLUSH: 231 case BIO_CTRL_FLUSH:
232 // Nothing to flush. 232 // Nothing to flush.
@@ -239,7 +239,7 @@ public:
239 // as they're nothing unusual. 239 // as they're nothing unusual.
240 return 0; 240 return 0;
241 default: 241 default:
242 LOG_DEBUG(Service_SSL, "OpenSSL BIO got ctrl({}, {}, {})", cmd, larg, parg); 242 LOG_DEBUG(Service_SSL, "OpenSSL BIO got ctrl({}, {}, {})", cmd, l_arg, p_arg);
243 return 0; 243 return 0;
244 } 244 }
245 } 245 }