diff options
author | serg@serg.mysql.com <> | 2002-11-09 15:09:24 +0100 |
---|---|---|
committer | serg@serg.mysql.com <> | 2002-11-09 15:09:24 +0100 |
commit | acbf1c6c21101fc5345238830301c16dfc21c2f4 (patch) | |
tree | abc5075c15d4ff6e99c3e154833b8d9a900059d3 /myisam | |
parent | 14f819fe96da4e510d3a16617cf9d6145c9a82eb (diff) | |
download | mariadb-git-acbf1c6c21101fc5345238830301c16dfc21c2f4.tar.gz |
typo fixed
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/myisamchk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisamchk.c b/myisam/myisamchk.c index ca4e430d49b..d39b1e75c15 100644 --- a/myisam/myisamchk.c +++ b/myisam/myisamchk.c @@ -1638,7 +1638,7 @@ err: volatile bool *killed_ptr(MI_CHECK *param) { - return (bool *)(param->thd); /* always NULL */ + return (bool *)(& param->thd); /* always NULL */ } /* print warnings and errors */ |