From 892ce06dbd8437b6f6308907231dc13ffebfe4f0 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Commit de168b4b4a4a8b8bd765a99bfa735d51f2650961 ("src: guard bundled_ca/openssl_ca with HAVE_OPENSSL") included an incorrect end macro comment which this commit fixes. PR-URL: https://github.com/nodejs/node/pull/12688 Reviewed-By: Luigi Pinca Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 8b061d7f401c2b..ed46dd3cb3a2f7 100644 --- a/src/node.cc +++ b/src/node.cc @@ -3777,7 +3777,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;