gdb_main: Fix a formatting bug that breaks, among other things, breakpoints
This commit is contained in:
parent
d99ab22f95
commit
14d3846663
|
@ -602,7 +602,7 @@ handle_z_packet(char *packet, int plen)
|
||||||
uint32_t addr;
|
uint32_t addr;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
sscanf(packet, "%*[zZ]%d,%08" PRIX32 ",%d", &type, &addr, &len);
|
sscanf(packet, "%*[zZ]%d,%08" PRIx32 ",%d", &type, &addr, &len);
|
||||||
if(set)
|
if(set)
|
||||||
ret = target_breakwatch_set(cur_target, type, addr, len);
|
ret = target_breakwatch_set(cur_target, type, addr, len);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue