mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 16:30:23 +00:00
#479 Fix off-by-one display bug for warning long symbols name
This commit is contained in:
parent
975230b46d
commit
dc7b99c006
@ -641,7 +641,7 @@ int ParseSymbolTable( TCHAR *pPathFileName, SymbolTable_Index_e eSymbolTableWrit
|
|||||||
|
|
||||||
// 2.9.0.11 Bug #479
|
// 2.9.0.11 Bug #479
|
||||||
int nLen = strlen( sName );
|
int nLen = strlen( sName );
|
||||||
if (nLen >= nMaxLen)
|
if (nLen > nMaxLen)
|
||||||
{
|
{
|
||||||
ConsolePrintFormat( sText, " %sWarn.: %s%s (%d > %d)"
|
ConsolePrintFormat( sText, " %sWarn.: %s%s (%d > %d)"
|
||||||
, CHC_WARNING
|
, CHC_WARNING
|
||||||
|
Loading…
Reference in New Issue
Block a user