From bd22a4e39a53adfa42b59c50929ce322ac07b64d Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Sun, 28 May 2006 17:22:35 +0000 Subject: [PATCH] Revert format change for now (I won't work for me). The problem that original '%x' also won't work ;( Need to find solution to print Bit64u ! --- bochs/gui/siminterface.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bochs/gui/siminterface.cc b/bochs/gui/siminterface.cc index 63032b0ca..761a66910 100644 --- a/bochs/gui/siminterface.cc +++ b/bochs/gui/siminterface.cc @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////// -// $Id: siminterface.cc,v 1.151 2006-05-28 16:39:25 vruppert Exp $ +// $Id: siminterface.cc,v 1.152 2006-05-28 17:22:35 sshwarts Exp $ ///////////////////////////////////////////////////////////////////////// // // See siminterface.h for description of the siminterface concept. @@ -1388,7 +1388,7 @@ bx_shadow_num_c::bx_shadow_num_c(bx_param_c *parent, val.p64bit = ptr_to_real_val; if (base == BASE_HEX) { this->base = base; - this->text_format = "0x" FMT_LL "x"; + this->text_format = "0x%x"; } } @@ -1407,7 +1407,7 @@ bx_shadow_num_c::bx_shadow_num_c(bx_param_c *parent, val.p64bit = (Bit64s*) ptr_to_real_val; if (base == BASE_HEX) { this->base = base; - this->text_format = "0x " FMT_LL "x"; + this->text_format = "0x%x"; } }