printf: vararg functions use 'const' for format string

This commit is contained in:
Darryl Miles
2025-01-03 09:08:14 +00:00
committed by Darryl L. Miles
parent 94ec5cf98f
commit bf96348502
10 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -129,7 +129,7 @@ Plane *cifReadPlane; /* Plane into which to paint material
/* VARARGS1 */
void
CIFReadError(char *format, ...)
CIFReadError(const char *format, ...)
{
va_list args;
@@ -153,7 +153,7 @@ CIFReadError(char *format, ...)
void
CIFReadWarning(char *format, ...)
CIFReadWarning(const char *format, ...)
{
va_list args;