]> git.sur5r.net Git - cc65/commitdiff
Line number is now an unsigned.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 15 Aug 2011 16:08:50 +0000 (16:08 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Mon, 15 Aug 2011 16:08:50 +0000 (16:08 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@5168 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ca65/error.c

index 53e4bc5c00f0dfaec86d6464b1a2fe649ffc8bf6..7592c45578f8a9eeab9dfb940ae99e23b6e61bf0 100644 (file)
@@ -81,7 +81,7 @@ static void VPrintMsg (const FilePos* Pos, const char* Desc,
     SB_Terminate (&Msg);
 
     /* Format the message header */
-    SB_Printf (&S, "%s(%lu): %s: ",
+    SB_Printf (&S, "%s(%u): %s: ",
                SB_GetConstBuf (GetFileName (Pos->Name)),
                Pos->Line,
                Desc);