]> git.sur5r.net Git - cc65/commitdiff
Fixed a warning
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 10 Oct 2000 20:39:26 +0000 (20:39 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 10 Oct 2000 20:39:26 +0000 (20:39 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@353 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/optimize.c

index 19032a5287d2c439d9a20aa38a4c8ec5e4222f7c..3b98d64f5d69bc3d183c4ef8f32cfe405a19e187 100644 (file)
@@ -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 */