summaryrefslogtreecommitdiffstats
path: root/dcop
diff options
context:
space:
mode:
authorAlexander Golubev <fatzer2@gmail.com>2016-06-28 07:13:04 +0300
committerSlávek Banko <slavek.banko@axis.cz>2017-01-29 02:27:14 +0100
commite0b892796d218e0ad64ed6698640e1923662d943 (patch)
tree146fb4dc5e506108d4839f90f2971e1b9b6002ee /dcop
parent26d76a4c048d99e282356616ca8e1e5ad45a7f53 (diff)
downloadtdelibs-e0b892796d218e0ad64ed6698640e1923662d943.tar.gz
tdelibs-e0b892796d218e0ad64ed6698640e1923662d943.zip
Fix a couple of harmless warnings
Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
Diffstat (limited to 'dcop')
-rw-r--r--dcop/client/marshall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dcop/client/marshall.cpp b/dcop/client/marshall.cpp
index 709e7d5af..354ad03e8 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() )
{
- tqWarning("Not enough arguments (expected %d, got %d).", i, args.count());
+ tqWarning("Not enough arguments (expected %u, got %lu).", i, args.count());
exit(1);
}
TQString s = TQString::fromLocal8Bit( args[ i ] );