diff options
author | Nikita Popov <nikic@php.net> | 2016-02-14 14:02:19 +0100 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2016-02-14 14:45:53 +0100 |
commit | c9357f82d3882eb3c7cb9f63dbc98d354fb20739 (patch) | |
tree | e4733ea1e1f5d866ef8ba6b63eb93b013d95c348 /sapi/phpdbg/phpdbg_opcode.c | |
parent | 59833783641622160903d56c0aa522db01b59f4c (diff) | |
download | php-git-c9357f82d3882eb3c7cb9f63dbc98d354fb20739.tar.gz |
Format string fixes
Conflicts:
ext/pgsql/pgsql.c
Diffstat (limited to 'sapi/phpdbg/phpdbg_opcode.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_opcode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/phpdbg/phpdbg_opcode.c b/sapi/phpdbg/phpdbg_opcode.c index fd9c92811d..0ea4324845 100644 --- a/sapi/phpdbg/phpdbg_opcode.c +++ b/sapi/phpdbg/phpdbg_opcode.c @@ -49,10 +49,10 @@ static inline char *phpdbg_decode_op(zend_op_array *ops, znode_op *op, uint32_t } break; case IS_VAR: - spprintf(&decode, 0, "@%td", EX_VAR_TO_NUM(op->var) - ops->last_var); + spprintf(&decode, 0, "@%u", EX_VAR_TO_NUM(op->var) - ops->last_var); break; case IS_TMP_VAR: - spprintf(&decode, 0, "~%td", EX_VAR_TO_NUM(op->var) - ops->last_var); + spprintf(&decode, 0, "~%u", EX_VAR_TO_NUM(op->var) - ops->last_var); break; case IS_CONST: { zval *literal = RT_CONSTANT(ops, *op); |