Fix spelling in Main.cpp

This commit is contained in:
Niraj Pant
2017-07-14 15:53:27 -07:00
committed by seelabs
parent 2858661bce
commit 138e1ba9a8

View File

@@ -79,7 +79,7 @@ adjustDescriptorLimit(int needed, beast::Journal j)
if (getrlimit(RLIMIT_NOFILE, &rl) == 0)
{
// If the limit is infnite, then we are good.
// If the limit is infinite, then we are good.
if (rl.rlim_cur == RLIM_INFINITY)
available = needed;
else