diff options
author | Alexander Golubev <[email protected]> | 2016-06-28 07:13:04 +0300 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2017-01-29 02:48:49 +0100 |
commit | 14aee6dcdbcd19ebba3371d4d59e4f09171aea5f (patch) | |
tree | 2b7f31d39af1f5e58a50fe8bd95994ee7f985a50 /dcop/client/marshall.cpp | |
parent | 73da3d8e5cd6a22dd83a8c1cb51db5b0328480da (diff) | |
download | tdelibs-14aee6dcdbcd19ebba3371d4d59e4f09171aea5f.tar.gz tdelibs-14aee6dcdbcd19ebba3371d4d59e4f09171aea5f.zip |
Fix a couple of harmless warnings
Signed-off-by: Alexander Golubev <[email protected]>
(cherry picked from commit e0b892796d218e0ad64ed6698640e1923662d943)
Diffstat (limited to 'dcop/client/marshall.cpp')
-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 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 ] ); |