From 027b91a1f70a57bca61ba0521d4fed8228f1dd4d Mon Sep 17 00:00:00 2001 From: michael Date: Thu, 29 Mar 2007 20:40:55 +0000 Subject: [PATCH] * Fixed compilation git-svn-id: trunk@7027 - --- packages/base/httpd/examples/minimain.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/base/httpd/examples/minimain.pas b/packages/base/httpd/examples/minimain.pas index afeae578fe..99532902a9 100644 --- a/packages/base/httpd/examples/minimain.pas +++ b/packages/base/httpd/examples/minimain.pas @@ -25,8 +25,8 @@ begin end; { The following line just prints a message to the errorlog } - ap_log_error(APLOG_MARK, APLOG_NOERRNO or APLOG_NOTICE, 0, r^.server, - 'mod_hello: %s', 'Before content is output'); + ap_log_error('me',1, APLOG_NOERRNO or APLOG_NOTICE, 0, r^.server, + 'mod_hello: %s', ['Before content is output']); { We set the content type before doing anything else } ap_set_content_type(r, 'text/html');