From ca7744da5fd81dcd14bf70fd29a57e5a295a4c90 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 27 Apr 2017 05:45:34 +0200 Subject: [PATCH] src: fix incorrect macro comment Commit de168b4b4a4a8b8bd765a99bfa735d51f2650961 ("src: guard bundled_ca/openssl_ca with HAVE_OPENSSL") included an incorrect end macro comment which this commit fixes. --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index bb17a4139ae6eb..d4656403302dd0 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3715,7 +3715,7 @@ static void ParseArgs(int* argc, #if HAVE_OPENSSL bool use_bundled_ca = false; bool use_openssl_ca = false; -#endif // HAVE_INSPECTOR +#endif // HAVE_OPENSSL for (unsigned int i = 0; i < nargs; ++i) { new_exec_argv[i] = nullptr;