Navigation Menu

Skip to content

Commit

Permalink
Split variable declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 24, 2012
1 parent a85e22e commit 913ebf9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ha_mroonga.cc
Expand Up @@ -9983,8 +9983,9 @@ int ha_mroonga::wrapper_recreate_indexes(THD *thd)
{
int res;
uint i, n_keys = table_share->keys;
KEY *p_key_info = &table->key_info[table_share->primary_key], *tmp_key_info,
*key_info = table->key_info;
KEY *p_key_info = &table->key_info[table_share->primary_key];
KEY *tmp_key_info;
KEY *key_info = table->key_info;
char db_name[MRN_MAX_PATH_SIZE];
char table_name[MRN_MAX_PATH_SIZE];
MRN_DBUG_ENTER_METHOD();
Expand Down

0 comments on commit 913ebf9

Please sign in to comment.