diff options
author | Ruediger Pluem <rpluem@apache.org> | 2017-10-09 10:58:57 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2017-10-09 10:58:57 +0200 |
commit | 22b4d25f767fc4009ea06a6f778f4732be2e37be (patch) | |
tree | d3f8a48df67d6c4e10665d55e945bb6ad22378ed /.gdbinit | |
parent | * It needs to be the dereferenced node (diff) | |
download | apache2-22b4d25f767fc4009ea06a6f778f4732be2e37be.tar.xz apache2-22b4d25f767fc4009ea06a6f778f4732be2e37be.zip |
* Convert to int before using
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1811541 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -461,7 +461,7 @@ class DumpPoolAndChilds (gdb.Command): done = 0 while done == 0: noded = node.dereference() - size = size + (4096 << noded['index']) + size = size + (4096 << int(noded['index'])) free = free + (noded['endp'] - noded['first_avail']) nodes = nodes + 1 node = noded['next'] |