From 0344652b3892e4b1d1367ab150fb0a3a32f50933 Mon Sep 17 00:00:00 2001 From: foobar Date: Sun, 6 Mar 2005 16:22:02 +0000 Subject: [PATCH] Fixed compile warning (bug #32046) --- Zend/zend_compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index bf002ef947..3309608b51 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -68,7 +68,7 @@ static void build_runtime_defined_function_key(zval *result, char *name, int nam uint char_pos_len; char *filename; - char_pos_len = zend_sprintf(char_pos_buf, "%x", (unsigned int) LANG_SCNG(_yy_last_accepting_cpos)); + char_pos_len = zend_sprintf(char_pos_buf, "%p", LANG_SCNG(_yy_last_accepting_cpos)); if (CG(active_op_array)->filename) { filename = CG(active_op_array)->filename; } else { -- 2.40.0