Skip to content

Commit 35f9111

Browse files
TimothyGuMylesBorins
authored andcommitted
src: add missing new line to printed message
PR-URL: #13940 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]>
1 parent db4faba commit 35f9111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4425,7 +4425,7 @@ void Init(int* argc,
44254425
// If icu_data_dir is empty here, it will load the 'minimal' data.
44264426
if (!i18n::InitializeICUDirectory(icu_data_dir)) {
44274427
FatalError(nullptr, "Could not initialize ICU "
4428-
"(check NODE_ICU_DATA or --icu-data-dir parameters)");
4428+
"(check NODE_ICU_DATA or --icu-data-dir parameters)\n");
44294429
}
44304430
#endif
44314431
// The const_cast doesn't violate conceptual const-ness. V8 doesn't modify

0 commit comments

Comments
 (0)