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