]> git.sur5r.net Git - cc65/commitdiff
The line number is now of type unsigned.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 15 Aug 2011 17:25:23 +0000 (17:25 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 15 Aug 2011 17:25:23 +0000 (17:25 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5172 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/scanner.c

index 9e8e101a91fec19ad8dfeb2c5aed7817e1caf650..bb9d5c1c43ed193e1c487980243987958f1943e1 100644 (file)
@@ -93,7 +93,7 @@ void CfgWarning (const FilePos* Pos, const char* Format, ...)
     SB_VPrintf (&Buf, Format, ap);
     va_end (ap);
 
-    Warning ("%s(%lu): %s",
+    Warning ("%s(%u): %s",
              GetString (Pos->Name), Pos->Line, SB_GetConstBuf (&Buf));
     SB_Done (&Buf);
 }
@@ -110,7 +110,7 @@ void CfgError (const FilePos* Pos, const char* Format, ...)
     SB_VPrintf (&Buf, Format, ap);
     va_end (ap);
 
-    Error ("%s(%lu): %s",
+    Error ("%s(%u): %s",
            GetString (Pos->Name), Pos->Line, SB_GetConstBuf (&Buf));
     SB_Done (&Buf);
 }