diff options
author | Piotr Sikora <piotrsikora@google.com> | 2015-12-02 19:17:19 -0800 |
---|---|---|
committer | Piotr Sikora <piotrsikora@google.com> | 2015-12-02 19:17:19 -0800 |
commit | 9752706bd443780c11062f60a22e46a968707f3d (patch) | |
tree | 1e7b42b3ee39df9ca8839cf5f5aa9eee93221c3b /src/os/unix/ngx_posix_init.c | |
parent | 699459347832fc57ab8ba9aefa11d3b2ec5385b0 (diff) | |
download | nginx-9752706bd443780c11062f60a22e46a968707f3d.tar.gz nginx-9752706bd443780c11062f60a22e46a968707f3d.zip |
Core: fix typo in error message.
Signed-off-by: Piotr Sikora <piotrsikora@google.com>
Diffstat (limited to 'src/os/unix/ngx_posix_init.c')
-rw-r--r-- | src/os/unix/ngx_posix_init.c | 2 |
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 bf3a310aa..61cc8ca7f 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; } |