mirror of
https://github.com/nginx/nginx.git
synced 2025-01-19 01:42:58 +08:00
fix building on 64-bit platforms broken in r1900
This commit is contained in:
parent
b9186ad856
commit
cbed526049
@ -668,7 +668,7 @@ ngx_http_perl_call_handler(pTHX_ ngx_http_request_t *r, HV *nginx, SV *sub,
|
||||
XPUSHs(sv);
|
||||
|
||||
if (args) {
|
||||
EXTEND(sp, (int) args[0]);
|
||||
EXTEND(sp, (intptr_t) args[0]);
|
||||
|
||||
for (i = 1; i <= (ngx_uint_t) args[0]; i++) {
|
||||
PUSHs(sv_2mortal(args[i]));
|
||||
|
Loading…
Reference in New Issue
Block a user