Browse Source

qt: Add closing newline to help message

`bitcoin-qt --help` was missing a final newline.
pull/145/head
Wladimir J. van der Laan 10 years ago
parent
commit
de9b4c7abc
  1. 2
      src/qt/utilitydialog.cpp

2
src/qt/utilitydialog.cpp

@ -92,7 +92,7 @@ HelpMessageDialog::~HelpMessageDialog()
void HelpMessageDialog::printToConsole()
{
// On other operating systems, the expected action is to print the message to the console.
QString strUsage = header + "\n" + coreOptions + "\n" + uiOptions;
QString strUsage = header + "\n" + coreOptions + "\n" + uiOptions + "\n";
fprintf(stdout, "%s", strUsage.toStdString().c_str());
}

Loading…
Cancel
Save