about summary refs log tree commit diff stats
path: root/src/tools
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-01-31 18:39:38 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-02-01 16:42:16 +0100
commit1deec05f3dfaa93b034d0bb7cf00b0f9d73d4016 (patch)
tree5ce764c9f320fec9debf5da79a72a8fb70709ce6 /src/tools
parent2ee5bcf9337897801c364c994a3852b25112296d (diff)
downloadbox64-1deec05f3dfaa93b034d0bb7cf00b0f9d73d4016.tar.gz
box64-1deec05f3dfaa93b034d0bb7cf00b0f9d73d4016.zip
[DYNAREC] Improved trace a bit
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/rbtree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rbtree.c b/src/tools/rbtree.c
index a7e4daf1..257a404f 100644
--- a/src/tools/rbtree.c
+++ b/src/tools/rbtree.c
@@ -591,7 +591,7 @@ int rb_get_end(rbtree* tree, uintptr_t addr, uint32_t* val, uintptr_t* end) {
 
 int rb_set(rbtree *tree, uintptr_t start, uintptr_t end, uint32_t data) {
 // printf("rb_set( "); print_rbtree(tree); printf(" , 0x%lX, 0x%lX, %hhu);\n", start, end, data); fflush(stdout);
-dynarec_log(LOG_DEBUG, "set 0x%lX, 0x%lX, %hhu\n", start, end, data);
+dynarec_log(LOG_DEBUG, "set 0x%lX, 0x%lX, 0x%x\n", start, end, data);
     if (!tree->root) {
         return add_range(tree, start, end, data);
     }