aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-10-05 11:24:09 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-10-05 11:24:09 -0700
commitee0b64853699c08602fed81cdefc62d7e8dcdce2 (patch)
tree55bc70f643e92b943f3d74aa005cfda182559383
parenta6be58d536c46d2ee2328ed827cb26d35656fbee (diff)
parentbb353618f16d1faf29de2f1fe4ad191122c90c27 (diff)
downloadbitcoin-ee0b64853699c08602fed81cdefc62d7e8dcdce2.tar.xz
Merge pull request #1906 from laanwj/2012_10_help_stdout
Send --help message to stdout i.s.o stderr
-rw-r--r--src/init.cpp2
-rw-r--r--src/qt/guiutil.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 7e2cda6297..0084dd6744 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -144,7 +144,7 @@ bool AppInit(int argc, char* argv[])
strUsage += "\n" + HelpMessage();
- fprintf(stderr, "%s", strUsage.c_str());
+ fprintf(stdout, "%s", strUsage.c_str());
return false;
}
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()