Class-ify ui_out
[deliverable/binutils-gdb.git] / gdb / guile / scm-breakpoint.c
index 61d16da3bb51b64a5ed4be785325795954537b0e..977ba189d162bb6bd63a4f07dd0d859263ed8076 100644 (file)
@@ -990,12 +990,12 @@ gdbscm_breakpoint_commands (SCM self)
   string_file = mem_fileopen ();
   chain = make_cleanup_ui_file_delete (string_file);
 
-  ui_out_redirect (current_uiout, string_file);
+  current_uiout->redirect (string_file);
   TRY
     {
       print_command_lines (current_uiout, breakpoint_commands (bp), 0);
     }
-  ui_out_redirect (current_uiout, NULL);
+  current_uiout->redirect (NULL);
   CATCH (except, RETURN_MASK_ALL)
     {
       do_cleanups (chain);
This page took 0.027252 seconds and 4 git commands to generate.