[Groonga-commit] groonga/groonga at 4c4c809 [master] Fix continuous line position

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Apr 19 13:09:45 JST 2015


Kouhei Sutou	2015-04-19 13:09:45 +0900 (Sun, 19 Apr 2015)

  New Revision: 4c4c80931019ba4801bef30f846947cacb45db69
  https://github.com/groonga/groonga/commit/4c4c80931019ba4801bef30f846947cacb45db69

  Message:
    Fix continuous line position

  Modified files:
    include/groonga/portability.h

  Modified: include/groonga/portability.h (+2 -2)
===================================================================
--- include/groonga/portability.h    2015-04-19 12:18:48 +0900 (735d30f)
+++ include/groonga/portability.h    2015-04-19 13:09:45 +0900 (1d76376)
@@ -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 */
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index