aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/breakpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/debugger/breakpoint.cpp')
-rw-r--r--src/plugins/debugger/breakpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp
index 5766a77406..d6a05fafc0 100644
--- a/src/plugins/debugger/breakpoint.cpp
+++ b/src/plugins/debugger/breakpoint.cpp
@@ -345,7 +345,7 @@ void BreakpointParameters::updateFromGdbOutput(const GdbMi &bkpt)
QString what = bkpt["what"].data();
if (what.startsWith("*0x")) {
type = WatchpointAtAddress;
- address = what.midRef(1).toULongLong(0, 0);
+ address = what.midRef(1).toULongLong(nullptr, 0);
} else {
type = WatchpointAtExpression;
expression = what;