From ca0a5f0bd33d0aa17a5cf518e41e47ddfde486ad Mon Sep 17 00:00:00 2001 From: Clem Dickey Date: Thu, 6 Aug 2015 09:24:58 -0700 Subject: PR python/17136 gdb/ChangeLog: * python/lib/gdb/command/type_printers.py (InfoTypePrinter): Fix typo. --- gdb/python/lib/gdb/command/type_printers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/python') diff --git a/gdb/python/lib/gdb/command/type_printers.py b/gdb/python/lib/gdb/command/type_printers.py index 0ef7686..1203989 100644 --- a/gdb/python/lib/gdb/command/type_printers.py +++ b/gdb/python/lib/gdb/command/type_printers.py @@ -47,7 +47,7 @@ class InfoTypePrinter(gdb.Command): sep = '' for objfile in gdb.objfiles(): if objfile.type_printers: - print ("%sType printers for %s:" % (sep, objfile.name)) + print ("%sType printers for %s:" % (sep, objfile.filename)) self.list_type_printers(objfile.type_printers) sep = '\n' if gdb.current_progspace().type_printers: -- cgit v1.1