Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
ff649268
Commit
ff649268
authored
Sep 15, 2009
by
hjk
Browse files
trk: fix parsing of breakpoint number
parent
d9cf3a87
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/gdb/trkgdbadapter.cpp
View file @
ff649268
...
...
@@ -1139,7 +1139,7 @@ void TrkGdbAdapter::handleAndReportSetBreakpoint(const TrkResult &result)
// Command: 0x80 Acknowledge
// Error: 0x00
// [80 09 00 00 00 00 0A]
uint
bpnr
=
extract
Byte
(
result
.
data
.
data
());
uint
bpnr
=
extract
Int
(
result
.
data
.
data
()
+
1
);
uint
addr
=
result
.
cookie
.
toUInt
();
m_session
.
addressToBP
[
addr
]
=
bpnr
;
logMessage
(
"SET BREAKPOINT "
+
hexxNumber
(
bpnr
)
+
" "
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment