Fix a couple of harmless warnings

Signed-off-by: Alexander Golubev <fatzer2@gmail.com>
(cherry picked from commit e0b892796d)
v3.5.13-sru
Alexander Golubev 8 years ago committed by Slávek Banko
parent f96187e5d8
commit 26522796ee

@ -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 ] );

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

Loading…
Cancel
Save