diff options
author | unknown <istruewing@chilla.local> | 2007-03-09 16:19:42 +0100 |
---|---|---|
committer | unknown <istruewing@chilla.local> | 2007-03-09 16:19:42 +0100 |
commit | 603a3981729f366fc0ce113ebdc2f485eff72a92 (patch) | |
tree | 7edf33fcd7e2aa81365862f3411185801359e49f /myisam | |
parent | 35d5819129fb86378a2c5ff6fa268f97befbe09b (diff) | |
download | mariadb-git-603a3981729f366fc0ce113ebdc2f485eff72a92.tar.gz |
Bug#25673 - spatial index corruption, error 126 incorrect key file for table
Fixed a compiler warning, deteced by pushbuild only.
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/rt_index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/rt_index.c b/myisam/rt_index.c index fd988f320ff..238432006a4 100644 --- a/myisam/rt_index.c +++ b/myisam/rt_index.c @@ -978,7 +978,7 @@ int rtree_delete(MI_INFO *info, uint keynr, uchar *key, uint key_length) } if (res) { - int j; + ulong j; DBUG_PRINT("rtree", ("root has been split, adjust levels")); for (j= i; j < ReinsertList.n_pages; j++) { |