瀏覽代碼

64-bit compatible enum mismatch display

Brian Fiete 3 年之前
父節點
當前提交
e6e30f4662
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      IDEHelper/WinDebugger.cpp

+ 3 - 3
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);
 			}
 		}