aboutsummaryrefslogtreecommitdiffstats
path: root/masm
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-10-12 08:51:02 +0200
committerSimon Hausmann <simon.hausmann@digia.com>2012-10-12 09:18:43 +0200
commitf17248441dbdfb6b0d5986cec2fb8fbfc3f9ef56 (patch)
tree9d4b7d08dab700559aa429bfde64a4f0e5c207cb /masm
parent3c02228bf36cceef1499c2b8bdf2477daf1e2c0b (diff)
Send all debug output to stderr
qDebug() was used for part of the logging, which uses stderr. Send everything else there as well. Change-Id: I363dff3d2e4dd6f95bf0347f1df589ae2528fd32 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'masm')
-rw-r--r--masm/stubs/WTFStubs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/masm/stubs/WTFStubs.cpp b/masm/stubs/WTFStubs.cpp
index 2c642ac986..e4009b8315 100644
--- a/masm/stubs/WTFStubs.cpp
+++ b/masm/stubs/WTFStubs.cpp
@@ -27,7 +27,7 @@ uint32_t cryptographicallyRandomNumber()
return 0;
}
-static FILE* s_dataFile = stdout;
+static FILE* s_dataFile = stderr;
void setDataFile(FILE* f)
{