Skip to content

Commit af3c72b

Browse files
committed
fixed warning & test pushing
1 parent c61bf4b commit af3c72b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/phpdbg/phpdbg_opcode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static inline char *phpdbg_decode_op(zend_op_array *ops, znode_op *op, uint32_t
6767
decode = zend_strndup(ZEND_STRL("true"));
6868
break;
6969
case IS_LONG:
70-
asprintf(&decode, "%lld", Z_LVAL_P(literal));
70+
asprintf(&decode, ZEND_ULONG_FMT, Z_LVAL_P(literal));
7171
break;
7272
case IS_DOUBLE:
7373
asprintf(&decode, "%.*G", 14, Z_DVAL_P(literal));

0 commit comments

Comments
 (0)