From 53e85a275b08370e874f1866b572edd0dcc36687 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 15 Sep 2004 19:00:23 +0200 Subject: Fixed compiler warnings --- ndb/src/common/debugger/DebuggerNames.cpp | 6 +++--- ndb/src/common/logger/SysLogHandler.cpp | 2 +- ndb/src/common/portlib/NdbTCP.cpp | 2 +- ndb/src/common/util/getarg.c | 6 +++--- ndb/src/common/util/random.c | 6 +++--- ndb/src/common/util/version.c | 2 +- ndb/src/ndbapi/NdbRecAttr.cpp | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/ndb/src/common/debugger/DebuggerNames.cpp b/ndb/src/common/debugger/DebuggerNames.cpp index 2142138e435..b2a79e2385b 100644 --- a/ndb/src/common/debugger/DebuggerNames.cpp +++ b/ndb/src/common/debugger/DebuggerNames.cpp @@ -29,7 +29,7 @@ static const char * localBlockNames[NO_OF_BLOCKS]; static int initSignalNames(const char * dst[], const GsnName src[], unsigned short len){ - int i; + unsigned i; for(i = 0; i<=MAX_GSN; i++) dst[i] = 0; @@ -55,7 +55,7 @@ int initSignalPrinters(SignalDataPrintFunction dst[], const NameFunctionPair src[], unsigned short len){ - int i; + unsigned i; for(i = 0; i<=MAX_GSN; i++) dst[i] = 0; @@ -81,7 +81,7 @@ int initBlockNames(const char * dst[], const BlockName src[], unsigned len){ - int i; + unsigned i; for(i = 0; is_addr = inet_addr(address); - if (dst->s_addr != -1) { + if (dst->s_addr != INADDR_NONE) { return 0; } return -1; diff --git a/ndb/src/common/util/getarg.c b/ndb/src/common/util/getarg.c index ae016746987..99b2840a5a6 100644 --- a/ndb/src/common/util/getarg.c +++ b/ndb/src/common/util/getarg.c @@ -494,7 +494,7 @@ arg_match_short (struct getargs *args, size_t num_args, optarg = &argv[j + 1]; else { ++*optind; - optarg = rargv[*optind]; + optarg = (char *) rargv[*optind]; } if(optarg == NULL) { --*optind; @@ -545,10 +545,10 @@ getarg(struct getargs *args, size_t num_args, i++; break; } - ret = arg_match_long (args, num_args, argv[i] + 2, + ret = arg_match_long (args, num_args, (char *) argv[i] + 2, argc, argv, &i); } else { - ret = arg_match_short (args, num_args, argv[i], + ret = arg_match_short (args, num_args, (char *) argv[i], argc, argv, &i); } if(ret) diff --git a/ndb/src/common/util/random.c b/ndb/src/common/util/random.c index 286ab093a26..21235763793 100644 --- a/ndb/src/common/util/random.c +++ b/ndb/src/common/util/random.c @@ -154,8 +154,8 @@ static void localRandom48(DRand48Data *buffer, long int *result) static void shuffleSequence(RandomSequence *seq) { - int i; - int j; + unsigned int i; + unsigned int j; unsigned int tmp; if( !seq ) return; @@ -254,7 +254,7 @@ unsigned int getNextRandom(RandomSequence *seq) void printSequence(RandomSequence *seq, unsigned int numPerRow) { - int i; + unsigned int i; if( !seq ) return; diff --git a/ndb/src/common/util/version.c b/ndb/src/common/util/version.c index 10f621d5db8..937ca1d32dd 100644 --- a/ndb/src/common/util/version.c +++ b/ndb/src/common/util/version.c @@ -135,7 +135,7 @@ ndbSearchUpgradeCompatibleTable(Uint32 ownVersion, Uint32 otherVersion, int i; for (i = 0; table[i].ownVersion != 0 && table[i].otherVersion != 0; i++) { if (table[i].ownVersion == ownVersion || - table[i].ownVersion == ~0) { + table[i].ownVersion == (Uint32) ~0) { switch (table[i].matchType) { case UG_Range: if (otherVersion >= table[i].otherVersion){ diff --git a/ndb/src/ndbapi/NdbRecAttr.cpp b/ndb/src/ndbapi/NdbRecAttr.cpp index 2e753f13006..bcd91292fcd 100644 --- a/ndb/src/ndbapi/NdbRecAttr.cpp +++ b/ndb/src/ndbapi/NdbRecAttr.cpp @@ -230,7 +230,7 @@ NdbOut& operator<<(NdbOut& out, const NdbRecAttr &r) } break; default: /* no print functions for the rest, just print type */ - out << r.getType(); + out << (int) r.getType(); j = r.arraySize(); if (j > 1) out << " " << j << " times"; -- cgit v1.2.1