summaryrefslogtreecommitdiff
path: root/src/VBox/Main/src-all/AuthLibrary.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-08-10 12:04:54 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2016-08-10 12:04:54 +0000
commit68c59aca16ac34b55c7378ca771a6bb406efc263 (patch)
tree214001f294136ff21e8366d5a1d0cea95b65ea32 /src/VBox/Main/src-all/AuthLibrary.cpp
parente048bb320c687035649622b4cea1de2c9122716e (diff)
downloadVirtualBox-svn-68c59aca16ac34b55c7378ca771a6bb406efc263.tar.gz
Main: warnings
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@63256 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Main/src-all/AuthLibrary.cpp')
-rw-r--r--src/VBox/Main/src-all/AuthLibrary.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VBox/Main/src-all/AuthLibrary.cpp b/src/VBox/Main/src-all/AuthLibrary.cpp
index 43a8817eddb..5354cfafc4a 100644
--- a/src/VBox/Main/src-all/AuthLibrary.cpp
+++ b/src/VBox/Main/src-all/AuthLibrary.cpp
@@ -41,8 +41,9 @@ typedef struct AuthCtx
unsigned clientId;
} AuthCtx;
-static DECLCALLBACK(int) authThread(RTTHREAD self, void *pvUser)
+static DECLCALLBACK(int) authThread(RTTHREAD hThreadSelf, void *pvUser)
{
+ RT_NOREF(hThreadSelf);
AuthCtx *pCtx = (AuthCtx *)pvUser;
if (pCtx->pfnAuthEntry3)