Fixed compiler warning.

This commit is contained in:
Sears Russell 2007-03-04 02:45:48 +00:00
parent e49e8c004e
commit d2e3aea23e

View file

@ -163,7 +163,7 @@ START_TEST(lhtableRandomized) {
}
eventCount = myrandom(eventCount * 4);
printf("Running %lld events.\n", eventCount);
printf("Running %lld events.\n", (long long) eventCount);
for(int iii = 0; iii < eventCount; iii++) {
int eventType = myrandom(3); // 0 = insert; 1 = read; 2 = delete.