andrey Thu Aug 28 16:25:32 2003 EDT
Modified files: (Branch: PHP_4_3)
/php-src/ext/gd gd.c
Log:
format string fix
Index: php-src/ext/gd/gd.c
diff -u php-src/ext/gd/gd.c:1.221.2.30 php-src/ext/gd/gd.c:1.221.2.31
--- php-src/ext/gd/gd.c:1.221.2.30 Thu Jun 19 11:48:07 2003
+++ php-src/ext/gd/gd.c Thu Aug 28 16:25:31 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: gd.c,v 1.221.2.30 2003/06/19 15:48:07 iliaa Exp $ */
+/* $Id: gd.c,v 1.221.2.31 2003/08/28 20:25:31 andrey Exp $ */
/* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center,
Cold Spring Harbor Labs. */
@@ -3166,7 +3166,7 @@
of_ind = zend_list_find(Z_LVAL_PP(fnt), &type);
if (type != le_ps_font) {
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "%d is not a Type 1 font
index", Z_LVAL_PP(fnt));
+ php_error_docref(NULL TSRMLS_CC, E_WARNING, "%ld is not a Type 1 font
index", Z_LVAL_PP(fnt));
RETURN_FALSE;
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php