#479 Fix off-by-one display bug for warning long symbols name

This commit is contained in:
michaelangel007 2017-08-24 09:47:05 -07:00
parent 975230b46d
commit dc7b99c006

View File

@ -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