Fix a couple of harmless warnings

Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit e0b892796d)
pull/16/head
Alexander Golubev 8 years ago committed by Slávek Banko
parent 73da3d8e5c
commit 14aee6dcdb

@ -273,7 +273,7 @@ void marshall( TQDataStream &arg, QCStringList args, uint &i, TQString type )
{ {
if( i >= args.count() ) 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); exit(1);
} }
TQString s = TQString::fromLocal8Bit( args[ i ] ); TQString s = TQString::fromLocal8Bit( args[ i ] );

@ -48,7 +48,7 @@ namespace TDEABC {
bool critical; bool critical;
}; };
typedef enum Scope { Base, One, Sub }; enum Scope { Base, One, Sub };
/** Constructs an empty KLDAPUrl. */ /** Constructs an empty KLDAPUrl. */
LDAPUrl(); LDAPUrl();

Loading…
Cancel
Save