1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

Mop up more than a dozen const'ness faults

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@953216 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2010-06-10 04:42:52 +00:00
parent 7716d3c3e3
commit f0d46a36f1
2 changed files with 2 additions and 2 deletions

View File

@@ -504,7 +504,7 @@ static const struct luaL_Reg server_methods[] = {
};
static req_fun_t *makefun(void *fun, int type, apr_pool_t *pool)
static req_fun_t *makefun(const void *fun, int type, apr_pool_t *pool)
{
req_fun_t *rft = apr_palloc(pool, sizeof(req_fun_t));
rft->fun = fun;