mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
Fixed a warning
git-svn-id: svn://svn.cc65.org/cc65/trunk@353 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
afce58deb6
commit
72f0cd6368
@ -331,7 +331,7 @@ static Line* ReplaceLine (Line* L, const char* Format, ...)
|
||||
/* Format the new line */
|
||||
va_list ap;
|
||||
va_start (ap, Format);
|
||||
vsprintf (S, Format, ap);
|
||||
xvsprintf (S, sizeof (S), Format, ap);
|
||||
va_end (ap);
|
||||
|
||||
/* Get the length of the new line */
|
||||
|
Loading…
Reference in New Issue
Block a user