mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
Added casts to make strict compilers happy.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@965314 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -332,7 +332,7 @@ static int req_dispatch(lua_State *L)
|
|||||||
switch (rft->type) {
|
switch (rft->type) {
|
||||||
case APL_REQ_FUNTYPE_TABLE:{
|
case APL_REQ_FUNTYPE_TABLE:{
|
||||||
apr_table_t *rs;
|
apr_table_t *rs;
|
||||||
req_field_apr_table_f func = rft->fun;
|
req_field_apr_table_f func = (req_field_apr_table_f)rft->fun;
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||||
"request_rec->dispatching %s -> apr table",
|
"request_rec->dispatching %s -> apr table",
|
||||||
name);
|
name);
|
||||||
@@ -342,7 +342,7 @@ static int req_dispatch(lua_State *L)
|
|||||||
}
|
}
|
||||||
|
|
||||||
case APL_REQ_FUNTYPE_LUACFUN:{
|
case APL_REQ_FUNTYPE_LUACFUN:{
|
||||||
lua_CFunction func = rft->fun;
|
lua_CFunction func = (lua_CFunction)rft->fun;
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||||
"request_rec->dispatching %s -> lua_CFunction",
|
"request_rec->dispatching %s -> lua_CFunction",
|
||||||
name);
|
name);
|
||||||
@@ -350,7 +350,7 @@ static int req_dispatch(lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
case APL_REQ_FUNTYPE_STRING:{
|
case APL_REQ_FUNTYPE_STRING:{
|
||||||
req_field_string_f func = rft->fun;
|
req_field_string_f func = (req_field_string_f)rft->fun;
|
||||||
char *rs;
|
char *rs;
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||||
"request_rec->dispatching %s -> string", name);
|
"request_rec->dispatching %s -> string", name);
|
||||||
@@ -359,7 +359,7 @@ static int req_dispatch(lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
case APL_REQ_FUNTYPE_INT:{
|
case APL_REQ_FUNTYPE_INT:{
|
||||||
req_field_int_f func = rft->fun;
|
req_field_int_f func = (req_field_int_f)rft->fun;
|
||||||
int rs;
|
int rs;
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||||
"request_rec->dispatching %s -> int", name);
|
"request_rec->dispatching %s -> int", name);
|
||||||
@@ -368,7 +368,7 @@ static int req_dispatch(lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
case APL_REQ_FUNTYPE_BOOLEAN:{
|
case APL_REQ_FUNTYPE_BOOLEAN:{
|
||||||
req_field_int_f func = rft->fun;
|
req_field_int_f func = (req_field_int_f)rft->fun;
|
||||||
int rs;
|
int rs;
|
||||||
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r,
|
||||||
"request_rec->dispatching %s -> boolean", name);
|
"request_rec->dispatching %s -> boolean", name);
|
||||||
|
Reference in New Issue
Block a user