From e9b8d47a054a5778d820d57530bd0c7beffbcec9 Mon Sep 17 00:00:00 2001 From: Shamus Hammons Date: Sat, 28 Nov 2015 14:01:27 -0600 Subject: [PATCH] Fix for stupid bug that truncated -i symbols to 7 chars instead of 8. --- rln.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rln.c b/rln.c index 1dd7520..8778d8f 100644 --- a/rln.c +++ b/rln.c @@ -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 -- 2.37.2