From: Wilfried Goesgens Date: Sun, 24 Jul 2011 15:10:43 +0000 (+0000) Subject: upsi, that const was missing. X-Git-Tag: v8.11~552 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=73a35bec83ea60f5c034290964de64dcd970f43b upsi, that const was missing. --- diff --git a/webcit/serv_func.c b/webcit/serv_func.c index 7ee74af2c..2f6c80735 100644 --- a/webcit/serv_func.c +++ b/webcit/serv_func.c @@ -303,7 +303,7 @@ void _fmout(StrBuf *Target, const char *align) wc_printf("
\n"); } -void FmOut(StrBuf *Target, const char *align, StrBuf *Source) +void FmOut(StrBuf *Target, const char *align, const StrBuf *Source) { const char *ptr, *pte; const char *BufPtr = NULL;