diff options
Diffstat (limited to 'src/s2wasm-main.cpp')
-rw-r--r-- | src/s2wasm-main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/s2wasm-main.cpp b/src/s2wasm-main.cpp index 35e80f916..a7060dd6e 100644 --- a/src/s2wasm-main.cpp +++ b/src/s2wasm-main.cpp @@ -64,8 +64,9 @@ int main(int argc, const char *argv[]) { std::streambuf *buffer; std::ofstream outfile; if (options.extra["output"].size()) { - if (options.debug) + if (options.debug) { std::cerr << "Opening '" << options.extra["output"] << std::endl; + } outfile.open(options.extra["output"], std::ofstream::out | std::ofstream::trunc); if (!outfile.is_open()) { |