mirror of
https://github.com/cc65/cc65.git
synced 2025-01-13 09:31:53 +00:00
The line number is now of type unsigned.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5172 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
b097b49a4a
commit
aaa19a569d
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user