summaryrefslogtreecommitdiff
path: root/ext/ftp/php_ftp.c
diff options
context:
space:
mode:
authorArd Biesheuvel <abies@php.net>2004-02-25 20:16:27 +0000
committerArd Biesheuvel <abies@php.net>2004-02-25 20:16:27 +0000
commit81f05c18f5f3baf44fd8eb60e4b309bfe65562dd (patch)
tree3ec5cff99747dcfd6bfdcf90d2d4439a977793e6 /ext/ftp/php_ftp.c
parentb1d8f104502ac628fba97a70ed5320afd7811714 (diff)
downloadphp-git-81f05c18f5f3baf44fd8eb60e4b309bfe65562dd.tar.gz
Wordsize fixes
Diffstat (limited to 'ext/ftp/php_ftp.c')
-rw-r--r--ext/ftp/php_ftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ftp/php_ftp.c b/ext/ftp/php_ftp.c
index ae5c2bad90..0466ed99aa 100644
--- a/ext/ftp/php_ftp.c
+++ b/ext/ftp/php_ftp.c
@@ -444,7 +444,7 @@ PHP_FUNCTION(ftp_alloc)
{
zval *z_ftp, *zresponse = NULL;
ftpbuf_t *ftp;
- int size, ret;
+ long size, ret;
char *response = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|z", &z_ftp, &size, &zresponse) == FAILURE) {