From: Andrey Hristov Date: Thu, 28 Aug 2003 20:25:31 +0000 (+0000) Subject: format string fix X-Git-Tag: php-4.3.4RC1~153 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6d57013b3ec811a0a43b96e978381755a90db658;p=php format string fix --- diff --git a/ext/gd/gd.c b/ext/gd/gd.c index ffe401387d..69d7d34b44 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -3166,7 +3166,7 @@ PHP_FUNCTION(imagepscopyfont) 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; }