mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 14:58:20 +00:00
fix building on 64-bit platforms broken in r1900
This commit is contained in:
parent
b9186ad856
commit
cbed526049
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue