Skip to content

Commit 9f8b57f

Browse files
committed
typing
1 parent b6323ef commit 9f8b57f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/exif/exif.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2121,7 +2121,7 @@ static void add_assoc_image_info(pval *value, int sub_array, image_info_type *im
21212121
We want to print out the marker contents as legible text;
21222122
we must guard against random junk and varying newline representations.
21232123
*/
2124-
static void exif_process_COM (image_info_type *image_info, uchar *value, size_t length TSRMLS_DC)
2124+
static void exif_process_COM (image_info_type *image_info, char *value, size_t length TSRMLS_DC)
21252125
{
21262126
exif_iif_add_tag(image_info, SECTION_COMMENT, "Comment", TAG_COMPUTED_VALUE, TAG_FMT_STRING, length-2, value+2 TSRMLS_CC);
21272127
}
@@ -2133,7 +2133,7 @@ static void exif_process_COM (image_info_type *image_info, uchar *value, size_t
21332133
we must guard against random junk and varying newline representations.
21342134
*/
21352135
#ifdef EXIF_JPEG2000
2136-
static void exif_process_CME (image_info_type *image_info, uchar *value, size_t length TSRMLS_DC)
2136+
static void exif_process_CME (image_info_type *image_info, char *value, size_t length TSRMLS_DC)
21372137
{
21382138
if (length>3) {
21392139
switch(value[2]) {

0 commit comments

Comments
 (0)