diff options
Diffstat (limited to 'qmake/generators/xmloutput.cpp')
-rw-r--r-- | qmake/generators/xmloutput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/xmloutput.cpp b/qmake/generators/xmloutput.cpp index 7fc1b081c7c..c43f8d810b1 100644 --- a/qmake/generators/xmloutput.cpp +++ b/qmake/generators/xmloutput.cpp @@ -267,7 +267,7 @@ void XmlOutput::closeTag() case Bare: if (tagStack.count()) //warn_msg(WarnLogic, "<Root>: Cannot close tag in Bare state, %d tags on stack", tagStack.count()); - qDebug("<Root>: Cannot close tag in Bare state, %d tags on stack", tagStack.count()); + qDebug("<Root>: Cannot close tag in Bare state, %d tags on stack", int(tagStack.count())); else //warn_msg(WarnLogic, "<Root>: Cannot close tag, no tags on stack"); qDebug("<Root>: Cannot close tag, no tags on stack"); |