diff options
Diffstat (limited to 'ext/exif/exif.c')
-rw-r--r-- | ext/exif/exif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index f3dfb07f87..5c52c194e6 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -955,7 +955,7 @@ PHPAPI int php_read_jpeg_exif(ImageInfoType *ImageInfo, char *FileName, int Read Reads the EXIF header data from a JPEG file */ PHP_FUNCTION(read_exif_data) { pval **p_name; - int ac = ARG_COUNT(ht), ret; + int ac = ZEND_NUM_ARGS(), ret; ImageInfoType ImageInfo; char tmp[64]; |