Fix compile of exim_monitor
authorPhil Pennock <pdp@exim.org>
Thu, 5 May 2011 01:41:58 +0000 (21:41 -0400)
committerPhil Pennock <pdp@exim.org>
Thu, 5 May 2011 01:41:58 +0000 (21:41 -0400)
The "Compiler masochism compliance" patch changed the log_write()
prototype to use "const char *" instead of "char *"; I don't have X11 on
my main box, so neglected to handle exim_monitor's duplicate definition
of log_write().

Fixes bug 1107

src/exim_monitor/em_main.c

index 187dba3b06f9782519a62b6cdf14b9601df8fe5e..4692fa744889f16a0ed1c69ff735708251224fd4 100644 (file)
@@ -168,7 +168,7 @@ Returns:    nothing
 */
 
 void
-log_write(unsigned int selector, int flags, char *format, ...)
+log_write(unsigned int selector, int flags, const char *format, ...)
 {
 va_list ap;
 va_start(ap, format);