Skip to content

Commit d1ed09a

Browse files
committed
Bugfix: GUI: Help messages already have a trailing newline, so don't add an extra one
1 parent 8afa602 commit d1ed09a

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
@@ -124,7 +124,7 @@ HelpMessageDialog::~HelpMessageDialog()
124124
void HelpMessageDialog::printToConsole()
125125
{
126126
// On other operating systems, the expected action is to print the message to the console.
127-
tfm::format(std::cout, "%s\n", qPrintable(text));
127+
tfm::format(std::cout, "%s", qPrintable(text));
128128
}
129129

130130
void HelpMessageDialog::showOrPrint()

0 commit comments

Comments
 (0)