diff options
author | David Hill <ddhill@php.net> | 2003-03-06 23:07:28 +0000 |
---|---|---|
committer | David Hill <ddhill@php.net> | 2003-03-06 23:07:28 +0000 |
commit | 5c90216d2ce8d8cc8d1453eee1a1e5099bd46631 (patch) | |
tree | 588ccc95099ca43c0bf46f8078fcb77fefa2f765 /ext/fdf/fdf.c | |
parent | 0338111950edcec427cfa2f1610dd6efcd43a14c (diff) | |
download | php-git-5c90216d2ce8d8cc8d1453eee1a1e5099bd46631.tar.gz |
64-bit correction to variables passed to zend_parse_parameters
@64-bit correction to variables passed to zend_parse_parameters (Dave)
Diffstat (limited to 'ext/fdf/fdf.c')
-rw-r--r-- | ext/fdf/fdf.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ext/fdf/fdf.c b/ext/fdf/fdf.c index e64085b302..7ca18beec0 100644 --- a/ext/fdf/fdf.c +++ b/ext/fdf/fdf.c @@ -551,7 +551,8 @@ PHP_FUNCTION(fdf_set_ap) PHP_FUNCTION(fdf_get_ap) { zval *r_fdf; char *fieldname, *filename; - int fieldname_len, filename_len, face; + int fieldname_len, filename_len; + long face; FDFDoc fdf; FDFErc err; FDFAppFace facenr; @@ -938,7 +939,8 @@ PHP_FUNCTION(fdf_set_flags) PHP_FUNCTION(fdf_get_flags) { zval *r_fdf; char *fieldname; - int fieldname_len, whichflags; + int fieldname_len; + long whichflags; FDFDoc fdf; FDFErc err; ASUns32 flags; @@ -994,7 +996,8 @@ PHP_FUNCTION(fdf_set_opt) PHP_FUNCTION(fdf_get_opt) { zval *r_fdf; char *fieldname; - int fieldname_len, element = -1; + int fieldname_len; + long element = -1; FDFDoc fdf; FDFErc err; |