diff options
author | Alexander Golubev <fatzer2@gmail.com> | 2016-06-28 07:13:04 +0300 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-07-22 15:56:49 +0200 |
commit | 26522796eec65ced2ef0b4b33963f4cc7c26c9a1 (patch) | |
tree | 7d353e87598356aa23397c79c702c5ad40f56bd0 /dcop | |
parent | f96187e5d85d5df993bb5233652e170fdf8c2fd4 (diff) | |
download | tdelibs-26522796eec65ced2ef0b4b33963f4cc7c26c9a1.tar.gz tdelibs-26522796eec65ced2ef0b4b33963f4cc7c26c9a1.zip |
Fix a couple of harmless warnings
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit e0b892796d218e0ad64ed6698640e1923662d943)
Diffstat (limited to 'dcop')
-rw-r--r-- | dcop/client/marshall.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/client/marshall.cpp b/dcop/client/marshall.cpp index 32d448c71..c7142d31b 100644 --- a/dcop/client/marshall.cpp +++ b/dcop/client/marshall.cpp @@ -273,7 +273,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type ) { if( i >= args.count() ) { - qWarning("Not enough arguments (expected %d, got %d).", i, args.count()); + qWarning("Not enough arguments (expected %u, got %lu).", i, args.count()); exit(1); } TQString s = TQString::fromLocal8Bit( args[ i ] ); |