Index: /trunk/src/VBox/VMM/PGMSharedPage.cpp
===================================================================
--- /trunk/src/VBox/VMM/PGMSharedPage.cpp	(revision 29410)
+++ /trunk/src/VBox/VMM/PGMSharedPage.cpp	(revision 29411)
@@ -85,5 +85,5 @@
                 uint64_t fFlags;
 
-                rc = PGMGstGetPage(pVCpu, GCRegion, &GCPhys, &fFlags);
+                rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys);
                 if (    rc == VINF_SUCCESS
                     &&  !(fFlags & X86_PTE_RW))
Index: /trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
===================================================================
--- /trunk/src/VBox/VMM/VMMR0/PGMR0.cpp	(revision 29410)
+++ /trunk/src/VBox/VMM/VMMR0/PGMR0.cpp	(revision 29411)
@@ -359,5 +359,5 @@
             uint64_t fFlags;
 
-            rc = PGMGstGetPage(pVCpu, GCRegion, &GCPhys, &fFlags);
+            rc = PGMGstGetPage(pVCpu, GCRegion, &fFlags, &GCPhys);
             if (    rc == VINF_SUCCESS
                 &&  !(fFlags & X86_PTE_RW)) /* important as we make assumptions about this below! */
