diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-29 17:20:26 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-01-29 17:20:26 +0100 |
commit | de9b4c7abcd6247f88344aa46b382098fa32c0af (patch) | |
tree | 631a9d9a9b7cf47ffd65daad60fa57ce26655c84 /src | |
parent | f9a2f088820574ce3c6d06bd9f4ea711184eadad (diff) |
qt: Add closing newline to help message
`bitcoin-qt --help` was missing a final newline.
Diffstat (limited to 'src')
-rw-r--r-- | src/qt/utilitydialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index a96b9d6c0b..9c5bed5b89 100644 --- a/src/qt/utilitydialog.cpp +++ b/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()); } |