diff --git a/bochs/debug/dbg_main.cc b/bochs/debug/dbg_main.cc index 4154cbc35..df67a9351 100644 --- a/bochs/debug/dbg_main.cc +++ b/bochs/debug/dbg_main.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: dbg_main.cc,v 1.64 2002-09-15 12:07:08 bdenney Exp $ +// $Id: dbg_main.cc,v 1.65 2002-09-15 12:08:39 bdenney Exp $ ///////////////////////////////////////////////////////////////////////// // // Copyright (C) 2001 MandrakeSoft S.A. @@ -224,7 +224,7 @@ void dbg_printf (const char *fmt, ...) char *buf = new char[1024]; vsprintf (buf, fmt, ap); va_end(ap); - SIM->debug_fputs (buf); // send to debugger, which will free buf when done. + SIM->debug_puts (buf); // send to debugger, which will free buf when done. } int diff --git a/bochs/gui/siminterface.cc b/bochs/gui/siminterface.cc index 23d336067..a820d911d 100644 --- a/bochs/gui/siminterface.cc +++ b/bochs/gui/siminterface.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: siminterface.cc,v 1.60 2002-09-15 12:07:09 bdenney Exp $ +// $Id: siminterface.cc,v 1.61 2002-09-15 12:08:40 bdenney Exp $ ///////////////////////////////////////////////////////////////////////// // // See siminterface.h for description of the siminterface concept. @@ -82,7 +82,7 @@ public: virtual void debug_break (); virtual void debug_interpret_cmd (char *cmd); virtual char *debug_get_next_command (); - virtual void debug_fputs (const char *cmd); + virtual void debug_puts (const char *cmd); #endif }; @@ -551,7 +551,7 @@ char *bx_real_sim_c::debug_get_next_command () return NULL; } -void bx_real_sim_c::debug_fputs (const char *text) +void bx_real_sim_c::debug_puts (const char *text) { #if BX_WITH_WX // send message to the GUI