Skip to content

Commit a35a33f

Browse files
authored
Fix GDB PrintState args value. (#5)
1 parent fbf9391 commit a35a33f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debuggers/gdb/gdb_commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def invoke (self, arg, from_tty):
8787
registers.append(str(e))
8888

8989
result['locals'] = locals
90-
result['args'] = locals
90+
result['args'] = args
9191
result['instructions'] = instructions
9292
result['registers'] = registers
9393

0 commit comments

Comments
 (0)