diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-10-05 11:24:09 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-10-05 11:24:09 -0700 |
commit | ee0b64853699c08602fed81cdefc62d7e8dcdce2 (patch) | |
tree | 55bc70f643e92b943f3d74aa005cfda182559383 /src/qt | |
parent | a6be58d536c46d2ee2328ed827cb26d35656fbee (diff) | |
parent | bb353618f16d1faf29de2f1fe4ad191122c90c27 (diff) |
Merge pull request #1906 from laanwj/2012_10_help_stdout
Send --help message to stdout i.s.o stderr
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/guiutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/guiutil.cpp b/src/qt/guiutil.cpp index d2d7716dbd..ff70ca24af 100644 --- a/src/qt/guiutil.cpp +++ b/src/qt/guiutil.cpp @@ -439,7 +439,7 @@ void HelpMessageBox::printToConsole() { // On other operating systems, the expected action is to print the message to the console. QString strUsage = header + "\n" + coreOptions + "\n" + uiOptions; - fprintf(stderr, "%s", strUsage.toStdString().c_str()); + fprintf(stdout, "%s", strUsage.toStdString().c_str()); } void HelpMessageBox::showOrPrint() |