mirror of
https://github.com/apache/httpd.git
synced 2025-08-16 17:04:42 +00:00
* Convert to int before using
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1811541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
2
.gdbinit
2
.gdbinit
@ -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']
|
||||
|
Reference in New Issue
Block a user