diff options
author | unknown <monty@narttu.mysql.fi> | 2003-04-02 13:06:33 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-04-02 13:06:33 +0300 |
commit | fb9a939416165321ff4f8b9dae29363671b84de9 (patch) | |
tree | d4a289609d65ee5267fcfa371f870b2b11c26816 /myisam/mi_test3.c | |
parent | 4b06bc8451d69708d6ce36b37495d20de0b09b1e (diff) | |
download | mariadb-git-fb9a939416165321ff4f8b9dae29363671b84de9.tar.gz |
Fixed problem with const table named with crashed test suite on MacOSX
myisam/mi_test3.c:
Fixed compiler warning
myisam/rt_test.c:
Fixed compiler warning
Diffstat (limited to 'myisam/mi_test3.c')
-rw-r--r-- | myisam/mi_test3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_test3.c b/myisam/mi_test3.c index defe041a99f..63cea4f715d 100644 --- a/myisam/mi_test3.c +++ b/myisam/mi_test3.c @@ -207,7 +207,7 @@ void start_test(int id) { mi_status(file1,&isam_info,HA_STATUS_VARIABLE); printf("%2d: End of test. Records: %ld Deleted: %ld\n", - id,isam_info.records,isam_info.deleted); + id,(long) isam_info.records, (long) isam_info.deleted); fflush(stdout); } |