diff options
author | Marcus Boerger <helly@php.net> | 2002-10-03 10:44:13 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-10-03 10:44:13 +0000 |
commit | 9f8b57fb57144c580ba9853c7ed8b954337a8520 (patch) | |
tree | f1e986249fda284c018ee5294e227fd529572dbe | |
parent | b6323ef5e27f2170e2738b75c19d9a40565c898c (diff) | |
download | php-git-9f8b57fb57144c580ba9853c7ed8b954337a8520.tar.gz |
typing
-rw-r--r-- | ext/exif/exif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/exif/exif.c b/ext/exif/exif.c index 8f37e0250c..8a8104d20e 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -2121,7 +2121,7 @@ static void add_assoc_image_info(pval *value, int sub_array, image_info_type *im We want to print out the marker contents as legible text; we must guard against random junk and varying newline representations. */ -static void exif_process_COM (image_info_type *image_info, uchar *value, size_t length TSRMLS_DC) +static void exif_process_COM (image_info_type *image_info, char *value, size_t length TSRMLS_DC) { exif_iif_add_tag(image_info, SECTION_COMMENT, "Comment", TAG_COMPUTED_VALUE, TAG_FMT_STRING, length-2, value+2 TSRMLS_CC); } @@ -2133,7 +2133,7 @@ static void exif_process_COM (image_info_type *image_info, uchar *value, size_t we must guard against random junk and varying newline representations. */ #ifdef EXIF_JPEG2000 -static void exif_process_CME (image_info_type *image_info, uchar *value, size_t length TSRMLS_DC) +static void exif_process_CME (image_info_type *image_info, char *value, size_t length TSRMLS_DC) { if (length>3) { switch(value[2]) { |