Fix a typo in the hardware breakpoint description
Closes #2936
Regression commit: b7402c2fb9
This commit is contained in:
parent
d78ec69b9c
commit
10d978deb4
|
|
@ -644,9 +644,9 @@ static void printHwBpInfo(const BREAKPOINT & bp)
|
|||
}
|
||||
auto symbolicname = SymGetSymbolicName(bp.addr);
|
||||
if(*bp.name)
|
||||
dprintf(QT_TRANSLATE_NOOP("DBG", "Hardware breakpoint%s \"%s\" at %s!\n"), bptype, bp.name, symbolicname.c_str());
|
||||
dprintf(QT_TRANSLATE_NOOP("DBG", "Hardware breakpoint (%s%s) \"%s\" at %s!\n"), bpsize, bptype, bp.name, symbolicname.c_str());
|
||||
else
|
||||
dprintf(QT_TRANSLATE_NOOP("DBG", "Hardware breakpoint%s at %s!\n"), bptype, symbolicname.c_str());
|
||||
dprintf(QT_TRANSLATE_NOOP("DBG", "Hardware breakpoint (%s%s) at %s!\n"), bpsize, bptype, symbolicname.c_str());
|
||||
free(bptype);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue