src: fix whitespace/braces lint error from 962686b
authorBen Noordhuis <info@bnoordhuis.nl>
Mon, 4 Nov 2013 21:42:48 +0000 (22:42 +0100)
committerBen Noordhuis <info@bnoordhuis.nl>
Mon, 4 Nov 2013 21:44:22 +0000 (22:44 +0100)
Silly warning.  One day I'll probably remove it altogether, see if I
don't.

src/node.cc

index 121550e..77ce5e1 100644 (file)
@@ -2310,7 +2310,7 @@ void SetupProcessObject(Environment* env,
 
 #if HAVE_OPENSSL
   // Stupid code to slice out the version string.
-  {
+  {  // NOLINT(whitespace/braces)
     size_t i, j, k;
     int c;
     for (i = j = 0, k = sizeof(OPENSSL_VERSION_TEXT) - 1; i < k; ++i) {