We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbf3037 commit 7962990Copy full SHA for 7962990
trikKernel/src/debug.cpp
@@ -24,7 +24,7 @@ Debugger::Debugger(QString const &methodName)
24
QString const indent(mIndent[thread()], ' ');
25
QString const str = QString("%1(Thread %2) Entering %3")
26
.arg(indent)
27
- .arg(reinterpret_cast<int>(thread()))
+ .arg(reinterpret_cast<unsigned long>(thread()))
28
.arg(mMethodName);
29
30
qDebug() << str.toStdString().c_str();
@@ -37,7 +37,7 @@ Debugger::~Debugger()
37
38
QString const str = QString("%1(Thread %2) Exiting %3")
39
40
41
42
43
0 commit comments