From 8de2eca55ec04880ca2e0f4e8d98dfd1f3f3ef91 Mon Sep 17 00:00:00 2001 From: Timothy Gu Date: Mon, 26 Jun 2017 11:59:44 +0800 Subject: [PATCH] src: add missing new line to printed message PR-URL: https://github.com/nodejs/node/pull/13940 Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Daniel Bevenius --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 62648dbb3fdd69..984c228205378d 100644 --- a/src/node.cc +++ b/src/node.cc @@ -4425,7 +4425,7 @@ void Init(int* argc, // If icu_data_dir is empty here, it will load the 'minimal' data. if (!i18n::InitializeICUDirectory(icu_data_dir)) { FatalError(nullptr, "Could not initialize ICU " - "(check NODE_ICU_DATA or --icu-data-dir parameters)"); + "(check NODE_ICU_DATA or --icu-data-dir parameters)\n"); } #endif // The const_cast doesn't violate conceptual const-ness. V8 doesn't modify