Fix a couple of harmless warnings

Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
pull/1/head
Alexander Golubev 8 years ago committed by Slávek Banko
parent 26d76a4c04
commit e0b892796d

@ -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