summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-05-28 20:31:09 +0000
committerYann Ylavic <ylavic@apache.org>2020-05-28 20:31:09 +0000
commit2c239a724015fd283e386ccd7713e55641f83180 (patch)
treef54cdf033ecb4de0a7735512f54872bb714394c5 /.gdbinit
parent626cafd68a81b4665b284ecda4bfc0d7c84250d2 (diff)
downloadhttpd-2c239a724015fd283e386ccd7713e55641f83180.tar.gz
.gdbinit: fix copy/paste dup [skip ci]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878248 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gdbinit b/.gdbinit
index 6e391c8c80..db72565550 100644
--- 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):