Navigation Menu

Skip to content

Commit

Permalink
Fix continuous line position
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 19, 2015
1 parent ee83eab commit 4c4c809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/groonga/portability.h
Expand Up @@ -140,12 +140,12 @@
#ifdef WIN32
# define GRN_OPEN_CREATE_MODE (_S_IREAD | _S_IWRITE)
# define GRN_OPEN_FLAG_BINARY _O_BINARY
# define grn_open(fd, pathname, flags)\
# define grn_open(fd, pathname, flags) \
_sopen_s(&(fd), (pathname), (flags), _SH_DENYNO, GRN_OPEN_CREATE_MODE)
#else /* WIN32 */
# define GRN_OPEN_CREATE_MODE (S_IRUSR | S_IWUSR | S_IRGRP)
# define GRN_OPEN_FLAG_BINARY 0
# define grn_open(fd, pathname, flags)\
# define grn_open(fd, pathname, flags) \
(fd) = open((pathname), (flags), GRN_OPEN_CREATE_MODE)
#endif /* WIN32 */

Expand Down

0 comments on commit 4c4c809

Please sign in to comment.