]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
.gdbinit: fix copy/paste dup [skip ci]
authorYann Ylavic <ylavic@apache.org>
Thu, 28 May 2020 20:31:09 +0000 (20:31 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 28 May 2020 20:31:09 +0000 (20:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878248 13f79535-47bb-0310-9956-ffa450edef68

.gdbinit

index 6e391c8c801bbf9bb207e10e234a7c7c52b05f57..db72565550c5cb0c3457a14f6330e38a3be88283 100644 (file)
--- a/.gdbinit
+++ b/.gdbinit
@@ -539,13 +539,13 @@ class DumpPoolAndChilds (gdb.Command):
     while c:
         c_num = c_num + 1
         dc = c.dereference()
-        print("%s  pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['plain_cleanup_fn'].dereference()))
+        print("%s  pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['child_cleanup_fn'].dereference()))
         c = dc['next']
     c = darg['cleanups']
     while c:
         c_num = c_num + 1
         dc = c.dereference()
-        print("%s  pst_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['plain_cleanup_fn'].dereference()))
+        print("%s  pst_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['child_cleanup_fn'].dereference()))
         c = dc['next']
 
   def _dump(self, arg, depth):