From dc7b99c0060547e346973e5314b1cdba31a7275b Mon Sep 17 00:00:00 2001 From: michaelangel007 Date: Thu, 24 Aug 2017 09:47:05 -0700 Subject: [PATCH] #479 Fix off-by-one display bug for warning long symbols name --- source/Debugger/Debugger_Symbols.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Debugger/Debugger_Symbols.cpp b/source/Debugger/Debugger_Symbols.cpp index eb04e540..d84b430e 100644 --- a/source/Debugger/Debugger_Symbols.cpp +++ b/source/Debugger/Debugger_Symbols.cpp @@ -641,7 +641,7 @@ int ParseSymbolTable( TCHAR *pPathFileName, SymbolTable_Index_e eSymbolTableWrit // 2.9.0.11 Bug #479 int nLen = strlen( sName ); - if (nLen >= nMaxLen) + if (nLen > nMaxLen) { ConsolePrintFormat( sText, " %sWarn.: %s%s (%d > %d)" , CHC_WARNING