diff options
Diffstat (limited to 'gdb/python')
-rw-r--r-- | gdb/python/py-type.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c index f20f974..1f4e72c 100644 --- a/gdb/python/py-type.c +++ b/gdb/python/py-type.c @@ -30,6 +30,7 @@ #include "vec.h" #include "bcache.h" #include "dwarf2loc.h" +#include "typeprint.h" typedef struct pyty_type_object { @@ -954,7 +955,8 @@ typy_str (PyObject *self) stb = mem_fileopen (); old_chain = make_cleanup_ui_file_delete (stb); - type_print (type_object_to_type (self), "", stb, -1); + LA_PRINT_TYPE (type_object_to_type (self), "", stb, -1, 0, + &type_print_raw_options); thetype = ui_file_xstrdup (stb, &length); do_cleanups (old_chain); |