Trace the read data in stlink_read_debug32 and not the address of the variable.

pull/389/head
Tobias Badertscher 2016-04-02 18:18:39 +02:00
rodzic f76dba7450
commit b0251b9956
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -732,7 +732,7 @@ int stlink_read_debug32(stlink_t *sl, uint32_t addr, uint32_t *data) {
ret = sl->backend->read_debug32(sl, addr, data);
if (!ret)
DLOG("*** stlink_read_debug32 %x is %#x\n", data, addr);
DLOG("*** stlink_read_debug32 %x is %#x\n", *data, addr);
return ret;
}