summaryrefslogtreecommitdiff
path: root/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/VMM/VMMR3/PGMSharedPage.cpp')
-rw-r--r--src/VBox/VMM/VMMR3/PGMSharedPage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/VMM/VMMR3/PGMSharedPage.cpp b/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
index e8b53796006..a89be6a5dfb 100644
--- a/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
+++ b/src/VBox/VMM/VMMR3/PGMSharedPage.cpp
@@ -218,7 +218,7 @@ static DECLCALLBACK(void) pgmR3CheckSharedModulesHelper(PVM pVM, VMCPUID idCpu)
{
/* We must stall other VCPUs as we'd otherwise have to send IPI flush commands for every single change we make. */
int rc = VMMR3EmtRendezvous(pVM, VMMEMTRENDEZVOUS_FLAGS_TYPE_ONE_BY_ONE, pgmR3SharedModuleRegRendezvous, &idCpu);
- Assert(rc == VINF_SUCCESS);
+ AssertRCSuccess(rc);
}
#endif