diff options
author | monty@donna.mysql.com <> | 2000-11-29 05:09:28 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-11-29 05:09:28 +0200 |
commit | 08a2c58ed1fb3c11484681d1eabe8906cfd1d001 (patch) | |
tree | ee9a533ec9c7faa983b88519569d772d4c829bc1 /myisam | |
parent | af297a21c369ab2d97623513316a7a81af9dc7b7 (diff) | |
download | mariadb-git-08a2c58ed1fb3c11484681d1eabe8906cfd1d001.tar.gz |
Fixed bug in 'drop table'
Portability fixes
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/mi_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c index ec9320f6104..cbfc5d3878c 100644 --- a/myisam/mi_check.c +++ b/myisam/mi_check.c @@ -108,7 +108,7 @@ int chk_status(MI_CHECK *param, register MI_INFO *info) else if (mi_is_crashed(info)) mi_check_print_warning(param, "Table is marked as crashed"); - if (share->state.open_count != (info->s->global_changed ? 1 : 0)) + if (share->state.open_count != (uint) (info->s->global_changed ? 1 : 0)) { mi_check_print_warning(param, "%d clients is using or hasn't closed the table properly", |