projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a295cd
)
lint: fix a cpplint error
author
Trevor Norris
<trev.norris@gmail.com>
Fri, 4 Oct 2013 03:43:35 +0000
(20:43 -0700)
committer
Trevor Norris
<trev.norris@gmail.com>
Fri, 11 Oct 2013 19:25:42 +0000
(12:25 -0700)
Added a NOLINT so that cpplint won't complain about some code.
src/node.cc
patch
|
blob
|
history
diff --git
a/src/node.cc
b/src/node.cc
index
5da4cd4
..
bea3380
100644
(file)
--- a/
src/node.cc
+++ b/
src/node.cc
@@
-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.