Navigation Menu

Skip to content

Commit

Permalink
windows: fix inverted condition
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 16, 2015
1 parent 17191a7 commit 653b948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/groonga/portability.h
Expand Up @@ -69,7 +69,7 @@

#ifdef WIN32
# define grn_fopen(file, name, mode) do { \
if (!fopen_s(&file, name, mode)) { \
if (fopen_s(&file, name, mode) != 0) { \
file = NULL; \
} \
} while (0)
Expand Down

0 comments on commit 653b948

Please sign in to comment.