lint: fix a cpplint error

Added a NOLINT so that cpplint won't complain about some code.
This commit is contained in:
Trevor Norris 2013-10-03 20:43:35 -07:00
parent 8a295cd520
commit 7503e4c882

View File

@ -3158,7 +3158,7 @@ void Init(int* argc,
#ifdef __POSIX__
// Raise the open file descriptor limit.
{
{ // NOLINT (whitespace/braces)
struct rlimit lim;
if (getrlimit(RLIMIT_NOFILE, &lim) == 0 && lim.rlim_cur != lim.rlim_max) {
// Do a binary search for the limit.