Compiler masochism compliance.
[exim.git] / src / src / debug.c
index 71e8c420d24c35ca0b3dd93e9cb9be5409a08cf6..4b08f654c40898162a2343eec315451c1a31586e 100644 (file)
@@ -148,7 +148,7 @@ get interleaved. Since some calls to debug_printf() don't end with newline,
 we save up the text until we do get the newline. */
 
 void
-debug_printf(char *format, ...)
+debug_printf(const char *format, ...)
 {
 va_list ap;
 va_start(ap, format);
@@ -157,7 +157,7 @@ va_end(ap);
 }
 
 void
-debug_vprintf(char *format, va_list ap)
+debug_vprintf(const char *format, va_list ap)
 {
 if (debug_file == NULL) return;