Skip to content

Commit de9b4c7

Browse files
committed
qt: Add closing newline to help message
`bitcoin-qt --help` was missing a final newline.
1 parent f9a2f08 commit de9b4c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/utilitydialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ HelpMessageDialog::~HelpMessageDialog()
9292
void HelpMessageDialog::printToConsole()
9393
{
9494
// On other operating systems, the expected action is to print the message to the console.
95-
QString strUsage = header + "\n" + coreOptions + "\n" + uiOptions;
95+
QString strUsage = header + "\n" + coreOptions + "\n" + uiOptions + "\n";
9696
fprintf(stdout, "%s", strUsage.toStdString().c_str());
9797
}
9898

0 commit comments

Comments
 (0)