summaryrefslogtreecommitdiff
path: root/src/VBox/VMM/VMMR0/NEMR0Native-win.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-03-05 22:19:22 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2018-03-05 22:19:22 +0000
commitc02ac4bd3971b03584655c639e45debf477e2dbe (patch)
tree5c2acdd966e323f4f8bd83b12a3b6179026d4f4c /src/VBox/VMM/VMMR0/NEMR0Native-win.cpp
parent55f4ba0de953f0626f4a671bbc5c4ecc8968ef5b (diff)
downloadVirtualBox-svn-c02ac4bd3971b03584655c639e45debf477e2dbe.tar.gz
NEM/win,VMM,PGM: Ported NEM runloop to ring-0. bugref:9044 [build fixes]
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@71223 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/VMM/VMMR0/NEMR0Native-win.cpp')
-rw-r--r--src/VBox/VMM/VMMR0/NEMR0Native-win.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/VMM/VMMR0/NEMR0Native-win.cpp b/src/VBox/VMM/VMMR0/NEMR0Native-win.cpp
index 4cbbb8c76e7..84b82281e2f 100644
--- a/src/VBox/VMM/VMMR0/NEMR0Native-win.cpp
+++ b/src/VBox/VMM/VMMR0/NEMR0Native-win.cpp
@@ -450,7 +450,7 @@ NEM_TMPL_STATIC int nemR0WinUnmapPages(PGVM pGVM, PGVMCPU pGVCpu, RTGCPHYS GCPhy
#if 1 /* Do we need to do this? Hopefully not... */
uint64_t volatile uR = g_pfnHvlInvokeHypercall(HvCallUncommitGpaPages | ((uint64_t)cPages << 32),
pGVCpu->nem.s.HCPhysHypercallData, 0);
- AssertMsg(uR == ((uint64_t)cPages << 32), ("uR=%#RX64\n", uR));
+ AssertMsg(uR == ((uint64_t)cPages << 32), ("uR=%#RX64\n", uR)); NOREF(uR);
#endif
return VINF_SUCCESS;
}