From: William A. Rowe Jr Date: Wed, 3 Jul 2002 00:17:40 +0000 (+0000) Subject: Fix a const'ness conflict. X-Git-Tag: 2.0.40~326 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5614e5b0bec033701d0980037f1926d5d2851fcb;p=thirdparty%2Fapache%2Fhttpd.git Fix a const'ness conflict. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95948 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/os/win32/ap_regkey.c b/os/win32/ap_regkey.c index 20b866caa6e..629be525d79 100644 --- a/os/win32/ap_regkey.c +++ b/os/win32/ap_regkey.c @@ -443,7 +443,7 @@ AP_DECLARE(apr_status_t) ap_regkey_value_raw_get(void **result, AP_DECLARE(apr_status_t) ap_regkey_value_raw_set(ap_regkey_t *key, const char *valuename, - void *value, + const void *value, apr_size_t valuesize, apr_int32_t valuetype, apr_pool_t *pool)