From b9822b6f1c735dc2eb18fb0399f7215e1f0eeeb4 Mon Sep 17 00:00:00 2001 From: Volker Ruppert Date: Sun, 23 Jun 2002 18:02:55 +0000 Subject: [PATCH] - in function bx_list_c::text_print() added parentheses (fixes SF bug #572177) --- bochs/gui/control.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bochs/gui/control.cc b/bochs/gui/control.cc index cf8f5d128..acbec8f2b 100644 --- a/bochs/gui/control.cc +++ b/bochs/gui/control.cc @@ -1,10 +1,10 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: control.cc,v 1.49 2002-06-20 17:59:26 yakovlev Exp $ +// $Id: control.cc,v 1.50 2002-06-23 18:02:55 vruppert Exp $ ///////////////////////////////////////////////////////////////////////// // /* * gui/control.cc - * $Id: control.cc,v 1.49 2002-06-20 17:59:26 yakovlev Exp $ + * $Id: control.cc,v 1.50 2002-06-23 18:02:55 vruppert 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 @@ -760,7 +760,7 @@ bx_list_c::text_print (FILE *fp) assert (list[i] != NULL); if (list[i]->get_enabled ()) { list[i]->text_print (fp); - if (!options->get () & BX_SERIES_ASK) + if (!(options->get () & BX_SERIES_ASK)) fprintf (fp, "\n"); } }