Index: dm/DM.cpp |
diff --git a/dm/DM.cpp b/dm/DM.cpp |
index cccc92b9faf4b63b5a48187e63b563f709f32cbe..d931a9a8e981d599e69643df4ba958c58b529f06 100644 |
--- a/dm/DM.cpp |
+++ b/dm/DM.cpp |
@@ -1265,7 +1265,7 @@ int dm_main() { |
gVLog = stderr; |
} else if (!FLAGS_writePath.isEmpty()) { |
sk_mkdir(FLAGS_writePath[0]); |
- gVLog = freopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w", stderr); |
+ gVLog = fopen(SkOSPath::Join(FLAGS_writePath[0], "verbose.log").c_str(), "w"); |
} |
JsonWriter::DumpJson(); // It's handy for the bots to assume this is ~never missing. |