From: Victor J. Orlikowski Date: Mon, 23 Jul 2001 16:16:29 +0000 (+0000) Subject: Fix a couple of compiler warnings, since these are macros, not functions. X-Git-Tag: 2.0.22~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c3faa45751eec5e06a37cea0d57f2e2c5e56df1;p=apache Fix a couple of compiler warnings, since these are macros, not functions. Submitted by: Justin Erenkrantz Reviewed by: Victor Orlikowski git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89656 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/main/mod_dav.c b/modules/dav/main/mod_dav.c index 8e29f05c7f..b0d2ca22c2 100644 --- a/modules/dav/main/mod_dav.c +++ b/modules/dav/main/mod_dav.c @@ -4724,8 +4724,8 @@ APR_IMPLEMENT_EXTERNAL_HOOK_RUN_FIRST(dav, DAV, int, find_liveprop, (const dav_resource *resource, const char *ns_uri, const char *name, const dav_hooks_liveprop **hooks), - (resource, ns_uri, name, hooks), 0); + (resource, ns_uri, name, hooks), 0) APR_IMPLEMENT_EXTERNAL_HOOK_VOID(dav, DAV, insert_all_liveprops, (request_rec *r, const dav_resource *resource, dav_prop_insert what, ap_text_header *phdr), - (r, resource, what, phdr)); + (r, resource, what, phdr))