Navigation Menu

Skip to content

Commit

Permalink
fix type.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Aug 12, 2011
1 parent 9714f99 commit 803cf5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ha_mroonga.cc
Expand Up @@ -1063,14 +1063,14 @@ ulonglong ha_mroonga::table_flags() const
{
MRN_DBUG_ENTER_METHOD();

int error;
ulonglong flags;
if (wrap_handler && share && share->wrapper_mode) {
error = wrapper_table_flags();
flags = wrapper_table_flags();
} else {
error = storage_table_flags();
flags = storage_table_flags();
}

DBUG_RETURN(error);
DBUG_RETURN(flags);
}

ulong ha_mroonga::wrapper_index_flags(uint idx, uint part, bool all_parts) const
Expand Down

0 comments on commit 803cf5a

Please sign in to comment.