Navigation Menu

Skip to content

Commit

Permalink
remove needless spaces.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 14, 2012
1 parent 9e9692b commit 16457a8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ha_mroonga.cc
Expand Up @@ -2753,9 +2753,10 @@ int ha_mroonga::ensure_database_create(const char *name)
if (error)
DBUG_RETURN(error);

mrn_decode((uchar *) decode_name,
(uchar *) decode_name + MRN_MAX_PATH_SIZE,
(const uchar *) name, (const uchar *) name + strlen(name));
mrn_decode((uchar *)decode_name,
(uchar *)decode_name + MRN_MAX_PATH_SIZE,
(const uchar *)name,
(const uchar *)name + strlen(name));
mrn_db_name_gen(decode_name, db_name);
mrn_db_path_gen(decode_name, db_path);

Expand Down

0 comments on commit 16457a8

Please sign in to comment.