summaryrefslogtreecommitdiff
path: root/storage/myisam/myisamchk.c
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-11-23 18:25:07 +0100
committerSergei Golubchik <sergii@pisem.net>2011-11-23 18:25:07 +0100
commit7189f09aa6d434fc889cb6d819e97c09f8cc0bcf (patch)
tree47a31db1f5dc87b0b0e6ecbe581e16658ab07fa9 /storage/myisam/myisamchk.c
parentfeba65a55495ce5cd9f5d8e6e0af8345485b52a1 (diff)
downloadmariadb-git-7189f09aa6d434fc889cb6d819e97c09f8cc0bcf.tar.gz
compiler warnings/errors
Diffstat (limited to 'storage/myisam/myisamchk.c')
-rw-r--r--storage/myisam/myisamchk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/myisam/myisamchk.c b/storage/myisam/myisamchk.c
index 6f27b1bc0d2..981ae61fe9d 100644
--- a/storage/myisam/myisamchk.c
+++ b/storage/myisam/myisamchk.c
@@ -670,8 +670,8 @@ get_one_option(int optid,
case OPT_STATS_METHOD:
{
int method;
- enum_handler_stats_method method_conv;
- LINT_INIT(method_conv);
+ enum_handler_stats_method UNINIT_VAR(method_conv);
+
myisam_stats_method_str= argument;
if ((method= find_type(argument, &myisam_stats_method_typelib,
FIND_TYPE_BASIC)) <= 0)