diff options
author | sergefp@mysql.com <> | 2005-09-21 19:58:40 +0400 |
---|---|---|
committer | sergefp@mysql.com <> | 2005-09-21 19:58:40 +0400 |
commit | 2b528d8364e3363ee4e7ddcc0a3523390cfc04e4 (patch) | |
tree | 7ecb8e5b814b83be0a788a4072be695b03f84799 /myisam | |
parent | ba9e3ca1a43fea29fa1701f15a0fa664c68f3cb8 (diff) | |
download | mariadb-git-2b528d8364e3363ee4e7ddcc0a3523390cfc04e4.tar.gz |
Fix compiler error: C++ code in C
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 1a7d2b2d9a8..2ffc491fc91 100644 --- a/myisam/myisamchk.c +++ b/myisam/myisamchk.c @@ -698,8 +698,8 @@ get_one_option(int optid, break; case OPT_STATS_METHOD: { - myisam_stats_method_str= argument; int method; + myisam_stats_method_str= argument; if ((method=find_type(argument, &myisam_stats_method_typelib, 2)) <= 0) { fprintf(stderr, "Invalid value of stats_method: %s.\n", argument); |