From 6d57013b3ec811a0a43b96e978381755a90db658 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Thu, 28 Aug 2003 20:25:31 +0000 Subject: [PATCH] format string fix --- ext/gd/gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.50.1