]> git.sur5r.net Git - cc65/commitdiff
More detailed error message.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jan 2011 16:12:10 +0000 (16:12 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 27 Jan 2011 16:12:10 +0000 (16:12 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4926 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/lineinfo.c

index 5c4a22cdd247c053118380d1e710269d3fc2f51b..180bfdf903f8b1bfb32c04f0d2e253ea240d2ec8 100644 (file)
@@ -142,9 +142,10 @@ void ReadLineInfoList (FILE* F, ObjData* O, Collection* LineInfos)
          * therefore be part of the line infos read from the object file.
          */
         if (LineInfoIndex >= CollCount (&O->LineInfos)) {
-            Internal ("Invalid line info index %u in module `%s'",
+            Internal ("Invalid line info index %u in module `%s' - max is %u",
                       LineInfoIndex,
-                      GetObjFileName (O));
+                      GetObjFileName (O),
+                      CollCount (&O->LineInfos));
         }
 
         /* Add the line info to the collection */