From: Stefan Fritsch Date: Mon, 9 Nov 2009 14:27:45 +0000 (+0000) Subject: Fix compiler warning X-Git-Tag: 2.3.3~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2cefaf3c32b8e5bca077c3f170f026e0758010ae;p=thirdparty%2Fapache%2Fhttpd.git Fix compiler warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@834079 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/dav/fs/repos.c b/modules/dav/fs/repos.c index cbcea9b567e..fde1d4cd223 100644 --- a/modules/dav/fs/repos.c +++ b/modules/dav/fs/repos.c @@ -197,7 +197,7 @@ struct dav_stream { apr_pool_t *p; apr_file_t *f; const char *pathname; /* we may need to remove it at close time */ - const char *temppath; + char *temppath; int unlink_on_error; };