From aa6290b7e56270c42bce32cd57ff18de8608d4f7 Mon Sep 17 00:00:00 2001 From: pbrook Date: Sat, 14 Apr 2007 22:35:50 +0000 Subject: [PATCH] Fix format specified for watchpoint address. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2667 c046a42c-6fe2-441c-8c8c-71466251a162 --- gdbstub.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gdbstub.c b/gdbstub.c index 813502f368..79f54f51f9 100644 --- a/gdbstub.c +++ b/gdbstub.c @@ -929,7 +929,8 @@ static void gdb_vm_stopped(void *opaque, int reason) if (reason == EXCP_DEBUG) { if (s->env->watchpoint_hit) { - snprintf(buf, sizeof(buf), "T%02xwatch:%x;", SIGTRAP, + snprintf(buf, sizeof(buf), "T%02xwatch:" TARGET_FMT_lx ";", + SIGTRAP, s->env->watchpoint[s->env->watchpoint_hit - 1].vaddr); put_packet(s, buf); s->env->watchpoint_hit = 0;