[PATCH] Core: fix typo in error message

Piotr Sikora piotrsikora at google.com
Thu Dec 3 03:18:49 UTC 2015


# HG changeset patch
# User Piotr Sikora <piotrsikora at google.com>
# Date 1449112639 28800
#      Wed Dec 02 19:17:19 2015 -0800
# Branch patch2
# Node ID 049758c0f1f160a68e3a8d0c85896d24ac6e77d6
# Parent  be3aed17689c0edd36c2025ff5c36fe493b68bd7
Core: fix typo in error message.

Signed-off-by: Piotr Sikora <piotrsikora at google.com>

diff -r be3aed17689c -r 049758c0f1f1 src/os/unix/ngx_posix_init.c
--- 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;
     }
 



More information about the nginx-devel mailing list