From 74db540eca6fd7fb7a63429139784e928cd04499 Mon Sep 17 00:00:00 2001 From: Bryce Denney Date: Fri, 25 May 2001 14:01:28 +0000 Subject: [PATCH] - use defined labels for log actions, rather than hardcoded numbers --- bochs/main.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bochs/main.cc b/bochs/main.cc index 9e6d56653..a264af459 100644 --- a/bochs/main.cc +++ b/bochs/main.cc @@ -83,7 +83,9 @@ bx_options_t bx_options = { { 0, 0, 0, {0,0,0,0,0,0}, NULL, NULL }, // ne2k 1, // newHardDriveSupport { 0, NULL, NULL, NULL }, // load32bitOSImage hack stuff - { 0, 1, 1, 2 } // ignore debugs, report infos and errors, fatal on panics. + { + ACT_IGNORE, ACT_REPORT, ACT_REPORT, ACT_FATAL + } // ignore debugs, report infos and errors, fatal on panics. }; static char bochsrc_path[512];