tony2001 Tue Jul 1 07:39:33 2008 UTC
Modified files: (Branch: PHP_5_3)
/php-src/ext/exif exif.c
Log:
more long -> int fixes
http://cvs.php.net/viewvc.cgi/php-src/ext/exif/exif.c?r1=1.173.2.5.2.20.2.6&r2=1.173.2.5.2.20.2.7&diff_format=u
Index: php-src/ext/exif/exif.c
diff -u php-src/ext/exif/exif.c:1.173.2.5.2.20.2.6
php-src/ext/exif/exif.c:1.173.2.5.2.20.2.7
--- php-src/ext/exif/exif.c:1.173.2.5.2.20.2.6 Sun Jun 22 14:13:01 2008
+++ php-src/ext/exif/exif.c Tue Jul 1 07:39:33 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: exif.c,v 1.173.2.5.2.20.2.6 2008/06/22 14:13:01 indeyets Exp $ */
+/* $Id: exif.c,v 1.173.2.5.2.20.2.7 2008/07/01 07:39:33 tony2001 Exp $ */
/* ToDos
*
@@ -142,7 +142,7 @@
};
/* }}} */
-#define EXIF_VERSION "1.4 $Id: exif.c,v 1.173.2.5.2.20.2.6 2008/06/22 14:13:01
indeyets Exp $"
+#define EXIF_VERSION "1.4 $Id: exif.c,v 1.173.2.5.2.20.2.7 2008/07/01 07:39:33
tony2001 Exp $"
/* {{{ PHP_MINFO_FUNCTION
*/
@@ -3913,7 +3913,7 @@
PHP_FUNCTION(exif_read_data)
{
char *p_name, *p_sections_needed;
- long p_name_len, p_sections_needed_len;
+ int p_name_len, p_sections_needed_len;
zend_bool sub_arrays=0, read_thumbnail=0, read_all=0;
int i, ac = ZEND_NUM_ARGS(), ret, sections_needed=0;
@@ -4155,7 +4155,7 @@
PHP_FUNCTION(exif_imagetype)
{
char *imagefile;
- long imagefile_len;
+ int imagefile_len;
php_stream * stream;
int itype = 0;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php