From 2c3faa45751eec5e06a37cea0d57f2e2c5e56df1 Mon Sep 17 00:00:00 2001 From: "Victor J. Orlikowski" Date: Mon, 23 Jul 2001 16:16:29 +0000 Subject: [PATCH] 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 --- modules/dav/main/mod_dav.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.40.0