summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Sikora <piotrsikora@google.com>2015-12-02 19:17:19 -0800
committerPiotr Sikora <piotrsikora@google.com>2015-12-02 19:17:19 -0800
commit9752706bd443780c11062f60a22e46a968707f3d (patch)
tree1e7b42b3ee39df9ca8839cf5f5aa9eee93221c3b
parent699459347832fc57ab8ba9aefa11d3b2ec5385b0 (diff)
Core: fix typo in error message.
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
-rw-r--r--src/os/unix/ngx_posix_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_posix_init.c b/src/os/unix/ngx_posix_init.c
index bf3a310a..61cc8ca7 100644
--- a/src/os/unix/ngx_posix_init.c
+++ b/src/os/unix/ngx_posix_init.c
@@ -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;
}