This commit is contained in:
tomas@poseidon.ndb.mysql.com 2005-10-06 10:54:07 +02:00
commit 620b7bafb0
449 changed files with 13165 additions and 6193 deletions

View file

@ -237,7 +237,7 @@ static int run_test(const char *filename)
pos=HA_OFFSET_ERROR;
}
if (found != row_count)
printf("Found %ld of %ld rows\n", found,row_count);
printf("Found %ld of %ld rows\n", (ulong) found, (ulong) row_count);
}
if (!silent)
@ -303,7 +303,8 @@ static int run_test(const char *filename)
if ((error=mi_rrnd(file,read_record,i == 1 ? 0L : HA_OFFSET_ERROR)) == -1)
{
if (found != row_count-deleted)
printf("Found only %ld of %ld rows\n",found,row_count-deleted);
printf("Found only %ld of %ld rows\n", (ulong) found,
(ulong) (row_count - deleted));
break;
}
if (!error)