Skip to content

Commit

Permalink
Core: fix typo in error message.
Browse files Browse the repository at this point in the history
Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora committed Dec 3, 2015
1 parent 6994593 commit 9752706
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/unix/ngx_posix_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ ngx_os_init(ngx_log_t *log)

if (getrlimit(RLIMIT_NOFILE, &rlmt) == -1) {
ngx_log_error(NGX_LOG_ALERT, log, errno,
"getrlimit(RLIMIT_NOFILE) failed)");
"getrlimit(RLIMIT_NOFILE) failed");
return NGX_ERROR;
}

Expand Down

0 comments on commit 9752706

Please sign in to comment.