mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
qt: Add closing newline to help message
`bitcoin-qt --help` was missing a final newline.
This commit is contained in:
parent
f9a2f08882
commit
de9b4c7abc
@ -92,7 +92,7 @@ HelpMessageDialog::~HelpMessageDialog()
|
|||||||
void HelpMessageDialog::printToConsole()
|
void HelpMessageDialog::printToConsole()
|
||||||
{
|
{
|
||||||
// On other operating systems, the expected action is to print the message to the console.
|
// 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());
|
fprintf(stdout, "%s", strUsage.toStdString().c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user