Skip to content

Commit

Permalink
src: add missing new line to printed message
Browse files Browse the repository at this point in the history
PR-URL: #13940
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
  • Loading branch information
TimothyGu authored and MylesBorins committed Aug 14, 2017
1 parent de8c16e commit 8de2eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8de2eca

Please sign in to comment.