Fix for stupid bug that truncated -i symbols to 7 chars instead of 8.

This commit is contained in:
Shamus Hammons 2015-11-28 14:01:27 -06:00
parent a0c533714d
commit e9b8d47a05
1 changed files with 2 additions and 2 deletions

4
rln.c
View File

@ -2952,8 +2952,8 @@ int doargs(int argc, char * argv[])
// handle -i (Truncation)
else
{
if (strlen(isym) > 7)
isym[7] = '\0';
if (strlen(isym) > 8)
isym[8] = '\0';
}
// Place include files in the DATA segment only