From d758b39dfc4293a74ea88374eebc9ad460259f30 Mon Sep 17 00:00:00 2001 From: uz Date: Mon, 15 Aug 2011 16:08:50 +0000 Subject: [PATCH] Line number is now an unsigned. git-svn-id: svn://svn.cc65.org/cc65/trunk@5168 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ca65/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.5