]> Shamusworld >> Repos - rln/blobdiff - rln.c
Fix for stupid bug that truncated -i symbols to 7 chars instead of 8.
[rln] / rln.c
diff --git a/rln.c b/rln.c
index 1dd7520a77f5489966c7030a8cf8b229c9ac3da7..8778d8f245a9b4702be919524f418ec5a499ae12 100644 (file)
--- a/rln.c
+++ b/rln.c
@@ -2952,8 +2952,8 @@ int doargs(int argc, char * argv[])
                                // handle -i (Truncation)
                                else
                                {
                                // 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
                                }
 
                                // Place include files in the DATA segment only