Browse Source

src: add missing new line to printed message

PR-URL: https://github.com/nodejs/node/pull/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>
v6.x
Timothy Gu 8 years ago
committed by Myles Borins
parent
commit
35f911152a
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 2
      src/node.cc

2
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

Loading…
Cancel
Save