diff options
Diffstat (limited to 'gdb/python/python.c')
-rw-r--r-- | gdb/python/python.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/python.c b/gdb/python/python.c index db37331..c29e7d7 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -609,7 +609,7 @@ execute_gdb_command (PyObject *self, PyObject *args, PyObject *kw) /* Use the console interpreter uiout to have the same print format for console or MI. */ interp = interp_lookup (current_ui, "console"); - current_uiout = interp_ui_out (interp); + current_uiout = interp->interp_ui_out (); scoped_restore preventer = prevent_dont_repeat (); if (to_string) |