From 5b245b9b97be73ef11eabb2bb520245ebc29b598 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Mon, 10 Dec 2012 10:50:05 +0000 Subject: [PATCH] [0.2.x] fixed : build fix git-svn-id: https://pykd.svn.codeplex.com/svn@81746 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/typedvar.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pykd/typedvar.cpp b/pykd/typedvar.cpp index b83cd9a..2ce3254 100644 --- a/pykd/typedvar.cpp +++ b/pykd/typedvar.cpp @@ -170,7 +170,7 @@ std::string BasicTypedVar::printValue() try { - sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() ); + sstr << boost::apply_visitor( VariantToHex(), getValue() ); sstr << " (" << boost::apply_visitor( VariantToStr(), getValue() ) << ")"; } @@ -217,7 +217,7 @@ std::string PtrTypedVar::printValue() try { - sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() ); + sstr << boost::apply_visitor( VariantToHex(), getValue() ); } catch( MemoryException& ) @@ -425,7 +425,7 @@ std::string BitFieldVar::printValue() try { - sstr << "0x" << boost::apply_visitor( VariantToHex(), getValue() ); + sstr << boost::apply_visitor( VariantToHex(), getValue() ); sstr << " (" << boost::apply_visitor( VariantToStr(), getValue() ) << ")"; } catch( MemoryException& )