From 1f5567a3ed376cccf372ee8ce5caa43a1667dbde Mon Sep 17 00:00:00 2001 From: Jean Flach Date: Mon, 23 Apr 2018 10:18:31 +0200 Subject: [PATCH] Fix typo --- lib/base/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/base/application.cpp b/lib/base/application.cpp index a65e0b9d2..f8e11d6c5 100644 --- a/lib/base/application.cpp +++ b/lib/base/application.cpp @@ -198,7 +198,7 @@ void Application::SetResourceLimits(void) if (setrlimit(RLIMIT_NOFILE, &rl) < 0) Log(LogWarning, "Application") - << "Failed adjust resource limit for open file handles (RLIMIT_NOFILE) with error \"" << strerror(errno) << "\""; + << "Failed to adjust resource limit for open file handles (RLIMIT_NOFILE) with error \"" << strerror(errno) << "\""; # else /* RLIMIT_NOFILE */ Log(LogNotice, "Application", "System does not support adjusting the resource limit for open file handles (RLIMIT_NOFILE)"); # endif /* RLIMIT_NOFILE */