From: uz Date: Mon, 15 Aug 2011 16:08:50 +0000 (+0000) Subject: Line number is now an unsigned. X-Git-Tag: V2.13.3~294 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d758b39dfc4293a74ea88374eebc9ad460259f30;p=cc65 Line number is now an unsigned. git-svn-id: svn://svn.cc65.org/cc65/trunk@5168 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ca65/error.c b/src/ca65/error.c index 53e4bc5c0..7592c4557 100644 --- a/src/ca65/error.c +++ b/src/ca65/error.c @@ -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);