From e6e30f4662e5f90f1279b827f643aa6c7cc8200f Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Thu, 28 Oct 2021 08:05:37 -0700 Subject: [PATCH] 64-bit compatible enum mismatch display --- IDEHelper/WinDebugger.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IDEHelper/WinDebugger.cpp b/IDEHelper/WinDebugger.cpp index e470703f..c2d98fa6 100644 --- a/IDEHelper/WinDebugger.cpp +++ b/IDEHelper/WinDebugger.cpp @@ -7478,14 +7478,14 @@ String WinDebugger::DbgTypedValueToString(const DbgTypedValue& origTypedValue, c if ((valueCount == 0) || (bitsLeft != 0)) { if (valueCount > 0) - retVal += " | "; - retVal += StrFormat("%d", bitsLeft); + retVal += " | "; + retVal += StrFormat("%lld", bitsLeft); if (language == DbgLanguage_C) { if (valueCount > 0) editVal += " | "; - editVal += StrFormat("%d", bitsLeft); + editVal += StrFormat("%lld", bitsLeft); } }