| Index: tools/grokdump.py
|
| diff --git a/tools/grokdump.py b/tools/grokdump.py
|
| index b19da1ee9890de4514c7d4f4d7bd7afe9da7397e..f3ae8a22ba357ad3c8435fa23fa9ed2fbc0adf9e 100755
|
| --- a/tools/grokdump.py
|
| +++ b/tools/grokdump.py
|
| @@ -1933,7 +1933,7 @@ class InspectionShell(cmd.Cmd):
|
| Print a descriptor array in a readable format.
|
| """
|
| start = int(address, 16)
|
| - if ((start & 1) == 1): start = start + 1
|
| + if ((start & 1) == 1): start = start - 1
|
| DescriptorArray(FixedArray(self.heap, None, start)).Print(Printer())
|
|
|
| def do_do_map(self, address):
|
|
|