Navigation Menu

Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 12, 2017
1 parent cd9c602 commit 96862f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/file_lock.c
Expand Up @@ -73,7 +73,7 @@ grn_file_lock_acquire(grn_ctx *ctx,
FILE_ATTRIBUTE_NORMAL,
NULL);
#else /* WIN32 */
file_lock->fd = open(file_lock->path, O_CREAT | O_EXCL, S_IRWUSR | S_IWUSR);
file_lock->fd = open(file_lock->path, O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
#endif
if (!GRN_FILE_LOCK_IS_INVALID(file_lock)) {
break;
Expand Down

0 comments on commit 96862f6

Please sign in to comment.