mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
Fixed compile warnings
This commit is contained in:
parent
7810659cc3
commit
3f3e34040a
@ -99,7 +99,7 @@ PHPDBG_API char* phpdbg_param_tostring(const phpdbg_param_t *param, char **point
|
||||
break;
|
||||
|
||||
case ADDR_PARAM:
|
||||
asprintf(pointer, "%#llx", param->addr);
|
||||
asprintf(pointer, ZEND_ULONG_FMT, param->addr);
|
||||
break;
|
||||
|
||||
case NUMERIC_PARAM:
|
||||
@ -329,7 +329,7 @@ PHPDBG_API void phpdbg_param_debug(const phpdbg_param_t *param, const char *msg)
|
||||
break;
|
||||
|
||||
case ADDR_PARAM:
|
||||
fprintf(stderr, "%s ADDR_PARAM(%llu)\n", msg, param->addr);
|
||||
fprintf(stderr, "%s ADDR_PARAM(" ZEND_ULONG_FMT ")\n", msg, param->addr);
|
||||
break;
|
||||
|
||||
case NUMERIC_FILE_PARAM:
|
||||
|
@ -60,7 +60,7 @@ static inline char *phpdbg_decode_op(zend_op_array *ops, znode_op *op, uint32_t
|
||||
zend_hash_index_update_mem(vars, (zend_ulong) ops->vars - op->var, &id, sizeof(zend_ulong));
|
||||
}
|
||||
}
|
||||
asprintf(&decode, "@%llu", id);
|
||||
asprintf(&decode, "@" ZEND_ULONG_FMT, id);
|
||||
} break;
|
||||
|
||||
case IS_CONST:
|
||||
@ -91,7 +91,7 @@ char *phpdbg_decode_opline(zend_op_array *ops, zend_op *op, HashTable *vars) /*{
|
||||
|
||||
case ZEND_JMPZNZ:
|
||||
decode[1] = phpdbg_decode_op(ops, &op->op1, op->op1_type, vars);
|
||||
asprintf(&decode[2], "J%u or J%llu", op->op2.opline_num, op->extended_value);
|
||||
asprintf(&decode[2], "J%u or J%" PRIu32, op->op2.opline_num, op->extended_value);
|
||||
goto result;
|
||||
|
||||
case ZEND_JMPZ:
|
||||
|
@ -332,7 +332,7 @@ static void phpdbg_delete_ht_watchpoints_recursive(phpdbg_watchpoint_t *watch) {
|
||||
if (strkey) {
|
||||
str_len = asprintf(&str, "%.*s%s%s%s", (int) watch->str_len, watch->str, (watch->flags & PHPDBG_WATCH_ARRAY) ? "[" : "->", phpdbg_get_property_key(strkey->val), (watch->flags & PHPDBG_WATCH_ARRAY) ? "]" : "");
|
||||
} else {
|
||||
str_len = asprintf(&str, "%.*s%s%lli%s", (int) watch->str_len, watch->str, (watch->flags & PHPDBG_WATCH_ARRAY) ? "[" : "->", numkey, (watch->flags & PHPDBG_WATCH_ARRAY) ? "]" : "");
|
||||
str_len = asprintf(&str, "%.*s%s" ZEND_LONG_FMT "%s", (int) watch->str_len, watch->str, (watch->flags & PHPDBG_WATCH_ARRAY) ? "[" : "->", numkey, (watch->flags & PHPDBG_WATCH_ARRAY) ? "]" : "");
|
||||
}
|
||||
|
||||
if ((watchpoint = zend_hash_str_find_ptr(&PHPDBG_G(watchpoints), str, str_len))) {
|
||||
|
Loading…
Reference in New Issue
Block a user