Index: /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h
===================================================================
--- /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h	(revision 27485)
+++ /trunk/src/VBox/VMM/VMMAll/PGMAllBth.h	(revision 27486)
@@ -800,5 +800,6 @@
                  * Assume for now it only applies to the read/write flag.
                  */
-                if (RT_SUCCESS(rc) && (uErr & X86_TRAP_PF_RW))
+                if (    RT_SUCCESS(rc) 
+                    &&  (uErr & X86_TRAP_PF_RW))
                 {
                     if (PGM_PAGE_GET_STATE(pPage) != PGM_PAGE_STATE_ALLOCATED)
@@ -1840,5 +1841,6 @@
                      * As for invlpg, it simply frees the whole shadow PT.
                      * ...It's possibly because the guest clears it and the guest doesn't really tell us... */
-                    if (!PdeSrc.b.u1Dirty && PdeSrc.b.u1Write)
+                    if (    !PdeSrc.b.u1Dirty 
+                        &&  PdeSrc.b.u1Write)
                     {
                         STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_MID_Z(Stat,DirtyPageBig));
@@ -2370,6 +2372,8 @@
                         {
                             if (PGM_PAGE_HAS_ACTIVE_HANDLERS(pPage))
+                            {
                                 /* Assuming write handlers here as the PTE is present (otherwise we wouldn't be here). */
                                 PteDst.n.u1Write = 0;
+                            }
                             else
                             {
@@ -2611,5 +2615,6 @@
                          | (PdeSrc.u & ~(GST_PDE_PG_MASK | X86_PDE_AVL_MASK | X86_PDE_PCD | X86_PDE_PWT | X86_PDE_PS | X86_PDE4M_G | X86_PDE4M_D));
                 /* (see explanation and assumptions further down.) */
-                if (!PdeSrc.b.u1Dirty && PdeSrc.b.u1Write)
+                if (    !PdeSrc.b.u1Dirty 
+                    &&  PdeSrc.b.u1Write)
                 {
                     STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_MID_Z(Stat,DirtyPageBig));
@@ -2759,5 +2764,6 @@
             /** @todo move the above stuff to a section in the PGM documentation. */
             Assert(!(PdeDst.u & PGM_PDFLAGS_TRACK_DIRTY));
-            if (!PdeSrc.b.u1Dirty && PdeSrc.b.u1Write)
+            if (    !PdeSrc.b.u1Dirty 
+                &&  PdeSrc.b.u1Write)
             {
                 STAM_COUNTER_INC(&pVCpu->pgm.s.CTX_MID_Z(Stat,DirtyPageBig));
