From 19684ead48eabd2ba0663a7f666c7de435b2464c Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Mon, 11 Jun 2001 14:07:54 +0000 Subject: [PATCH] - print the event type correctly in control panel (used to assume it was a panic) --- bochs/gui/control.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bochs/gui/control.cc b/bochs/gui/control.cc index 44f9f4c4d..cc0c8c4d6 100644 --- a/bochs/gui/control.cc +++ b/bochs/gui/control.cc @@ -1,6 +1,6 @@ /* * gui/control.cc - * $Id: control.cc,v 1.11 2001-06-11 14:03:35 bdenney Exp $ + * $Id: control.cc,v 1.12 2001-06-11 14:07:54 bdenney Exp $ * * This is code for a text-mode control panel. Note that this file * does NOT include bochs.h. Instead, it does all of its contact with @@ -838,7 +838,7 @@ int control_panel_notify_callback (int code) fprintf (stderr, "Event type: %s\n", SIM->get_log_level_name (level)); fprintf (stderr, "Device: %s\n", prefix); fprintf (stderr, "Message: %s\n\n", msg); - fprintf (stderr, "A panic has occurred. Do you want to:\n"); + fprintf (stderr, "A %s has occurred. Do you want to:\n", SIM->get_log_level_name (level)); fprintf (stderr, " cont - continue execution\n"); fprintf (stderr, " alwayscont - continue execution, and don't ask again.\n"); fprintf (stderr, " This affects only %s events from device %s\n", SIM->get_log_level_name (level), prefix);