# HG changeset patch # User Piotr Sikora # Date 1449112639 28800 # Node ID cb31017e961b4a54e83c4fc1be46c18842696207 # Parent fcbac620ae83c9e1e0847086f7841da13615fec2 Core: fix typo in error message. Signed-off-by: Piotr Sikora diff -r fcbac620ae83 -r cb31017e961b src/os/unix/ngx_posix_init.c --- a/src/os/unix/ngx_posix_init.c Thu Dec 03 20:06:45 2015 +0300 +++ b/src/os/unix/ngx_posix_init.c Wed Dec 02 19:17:19 2015 -0800 @@ -63,7 +63,7 @@ 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; }