From: foobar Date: Sun, 6 Mar 2005 16:22:02 +0000 (+0000) Subject: Fixed compile warning (bug #32046) X-Git-Tag: RELEASE_0_3~67 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0344652b3892e4b1d1367ab150fb0a3a32f50933;p=php Fixed compile warning (bug #32046) --- 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 {