helly           Thu Oct  3 06:44:14 2002 EDT

  Modified files:              
    /php4/ext/exif      exif.c 
  Log:
  typing
  
  
Index: php4/ext/exif/exif.c
diff -u php4/ext/exif/exif.c:1.115 php4/ext/exif/exif.c:1.116
--- php4/ext/exif/exif.c:1.115  Thu Aug 29 04:32:41 2002
+++ php4/ext/exif/exif.c        Thu Oct  3 06:44:13 2002
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: exif.c,v 1.115 2002/08/29 08:32:41 helly Exp $ */
+/* $Id: exif.c,v 1.116 2002/10/03 10:44:13 helly Exp $ */
 
 /*  ToDos
  *
@@ -109,7 +109,7 @@
 };
 /* }}} */
 
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.115 2002/08/29 08:32:41 helly Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.116 2002/10/03 10:44:13 helly Exp $"
 
 /* {{{ PHP_MINFO_FUNCTION
  */
@@ -2121,7 +2121,7 @@
    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 @@
    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]) {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to