Navigation Menu

Skip to content

Commit

Permalink
Fix '*' position
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 19, 2012
1 parent 3382b56 commit 0b2c39d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/mrn_path_mapper.cpp
Expand Up @@ -28,7 +28,7 @@
#include <string.h>

namespace mrn {
PathMapper::PathMapper(const char *mysql_path)
PathMapper::PathMapper(const char* mysql_path)
: mysql_path_(mysql_path) {
db_path_[0] = '\0';
db_name_[0] = '\0';
Expand All @@ -40,7 +40,7 @@ namespace mrn {
* "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0" ==>
* "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0.mrn"
*/
const char *PathMapper::db_path() {
const char* PathMapper::db_path() {
if (db_path_[0] != '\0') {
return db_path_;
}
Expand All @@ -65,7 +65,7 @@ namespace mrn {
* "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0" ==>
* "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0"
*/
const char *PathMapper::db_name() {
const char* PathMapper::db_name() {
if (db_name_[0] != '\0') {
return db_name_;
}
Expand Down

0 comments on commit 0b2c39d

Please sign in to comment.