diff options
author | monty@mysql.com <> | 2004-11-12 19:58:24 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-11-12 19:58:24 +0200 |
commit | addd1a0da882615330368c8815b0c13d17bf0232 (patch) | |
tree | e0dd750287073966f1595d8099b4cc23faa803f7 /myisam | |
parent | 16c1b9f44e36de0867afb15ba6e6baa4fb9a857d (diff) | |
parent | 08c5b245b88eda61c95febea3d02394b76605d79 (diff) | |
download | mariadb-git-addd1a0da882615330368c8815b0c13d17bf0232.tar.gz |
Merge with 4.1
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/mi_check.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/myisam/mi_check.c b/myisam/mi_check.c index bf684270c0a..2999482549c 100644 --- a/myisam/mi_check.c +++ b/myisam/mi_check.c @@ -658,10 +658,11 @@ static int chk_index(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo, goto err; if (tmp_keys + subkeys) { - mi_check_print_error(param,"Number of words in the 2nd level tree " - "does not match the number in the header. " - "Parent word in on the page %s, offset %d", - llstr(page,llbuff), old_keypos-buff); + mi_check_print_error(param, + "Number of words in the 2nd level tree " + "does not match the number in the header. " + "Parent word in on the page %s, offset %u", + llstr(page,llbuff), (uint) (old_keypos-buff)); goto err; } (*keys)+=tmp_keys-1; |