diff options
Diffstat (limited to 'gdb/gdb-gdb.py.in')
-rw-r--r-- | gdb/gdb-gdb.py.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/gdb-gdb.py.in b/gdb/gdb-gdb.py.in index a60ad01..ae67f81 100644 --- a/gdb/gdb-gdb.py.in +++ b/gdb/gdb-gdb.py.in @@ -242,9 +242,10 @@ class StructMainTypePrettyPrinter: " _mp_num and _mp_den fields if needed)" ) elif type_specific_kind == "TYPE_SPECIFIC_INT": - img = ("int_stuff = { bit_size = %d, bit_offset = %d }" - % (type_specific["int_stuff"]["bit_size"], - type_specific["int_stuff"]["bit_offset"])) + img = "int_stuff = { bit_size = %d, bit_offset = %d }" % ( + type_specific["int_stuff"]["bit_size"], + type_specific["int_stuff"]["bit_offset"], + ) else: img = ( "type_specific = ??? (unknown type_specific_kind: %s)" |