Commit 53e85a27 authored by unknown's avatar unknown

Fixed compiler warnings

parent f955763f
......@@ -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; i<NO_OF_BLOCKS; i++)
dst[i] = 0;
......
......@@ -113,7 +113,7 @@ SysLogHandler::setParam(const BaseString &param, const BaseString &value) {
}
static const struct syslog_facility {
char *name;
const char *name;
int value;
} facilitynames[] = {
{ "auth", LOG_AUTH },
......
......@@ -39,7 +39,7 @@ Ndb_getInAddr(struct in_addr * dst, const char *address) {
/* Try it as aaa.bbb.ccc.ddd. */
dst->s_addr = inet_addr(address);
if (dst->s_addr != -1) {
if (dst->s_addr != INADDR_NONE) {
return 0;
}
return -1;
......
......@@ -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)
......
......@@ -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;
......
......@@ -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){
......
......@@ -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";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment