diff options
author | Arvid Ephraim Picciani <arvid.picciani@nokia.com> | 2010-10-22 15:10:35 (GMT) |
---|---|---|
committer | Arvid Ephraim Picciani <arvid.picciani@nokia.com> | 2010-10-22 15:17:00 (GMT) |
commit | 59a6ea0e4bde610dd55f735367a1097b79cc4383 (patch) | |
tree | f76fcbf9fde27dec11807c1dd37b25b2b54c5f2d /src/corelib/plugin/qlibrary.cpp | |
parent | 0e47bb7df6f2cd0ad61e3769d98c1ddf1cc6d30c (diff) | |
download | Qt-59a6ea0e4bde610dd55f735367a1097b79cc4383.zip Qt-59a6ea0e4bde610dd55f735367a1097b79cc4383.tar.gz Qt-59a6ea0e4bde610dd55f735367a1097b79cc4383.tar.bz2 |
Fix compiler warnings in qelfparser
from magical conversion to signed int in arithmetics
Reviewed-by: Friedemann Kleint
Diffstat (limited to 'src/corelib/plugin/qlibrary.cpp')
-rw-r--r-- | src/corelib/plugin/qlibrary.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/corelib/plugin/qlibrary.cpp b/src/corelib/plugin/qlibrary.cpp index 5683c66..fc8721c 100644 --- a/src/corelib/plugin/qlibrary.cpp +++ b/src/corelib/plugin/qlibrary.cpp @@ -1,3 +1,4 @@ + /**************************************************************************** ** ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). @@ -385,7 +386,7 @@ static bool qt_unix_query(const QString &library, uint *version, bool *debug, QB } } else if (r != QElfParser::Ok) { if (lib && qt_debug_component()) { - qWarning(qPrintable(lib->errorString)); + qWarning("QElfParser: %s",qPrintable(lib->errorString)); } return false; } |