Navigation Menu

Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
We should add a space between type name and "*".
  • Loading branch information
kou committed Oct 5, 2012
1 parent b47a5b9 commit a5110e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cpp
Expand Up @@ -43,7 +43,7 @@
# include <direct.h>
# define MRN_MKDIR(pathname, mode) _mkdir((pathname))
# define MRN_ALLOCATE_VARIABLE_LENGTH_ARRAYS(type, variable_name, variable_size) \
type* variable_name = (type*)_malloca(sizeof(type) * variable_size)
type *variable_name = (type *)_malloca(sizeof(type) * variable_size)
#else
# include <dirent.h>
# include <unistd.h>
Expand Down

0 comments on commit a5110e4

Please sign in to comment.