]> git.sur5r.net Git - openldap/commitdiff
Revert "MDB_DEBUG tweak for old compilers"
authorHoward Chu <hyc@symas.com>
Thu, 25 Oct 2012 13:54:09 +0000 (06:54 -0700)
committerHoward Chu <hyc@symas.com>
Thu, 25 Oct 2012 13:54:09 +0000 (06:54 -0700)
This reverts commit ef2092eac9f35b77eae250801c96dfa515c6d4b2.

libraries/libmdb/mdb.c

index fddcc9e12ff55c69a762e253c29b801ce5a062fb..091e8ec569d0a0512bb5ca5fb82a889db958ca77 100644 (file)
@@ -3683,16 +3683,15 @@ static void
 mdb_cursor_pop(MDB_cursor *mc)
 {
        if (mc->mc_snum) {
+#if MDB_DEBUG
+               MDB_page        *top = mc->mc_pg[mc->mc_top];
+#endif
                mc->mc_snum--;
                if (mc->mc_snum)
                        mc->mc_top--;
-#if MDB_DEBUG
-               {
-               MDB_page        *top = mc->mc_pg[mc->mc_top];
+
                DPRINTF("popped page %zu off db %u cursor %p", top->mp_pgno,
                        mc->mc_dbi, (void *) mc);
-               }
-#endif
        }
 }