summaryrefslogtreecommitdiff
path: root/src/support/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/file.cpp')
-rw-r--r--src/support/file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/file.cpp b/src/support/file.cpp
index 296fd6dbe..666c07b87 100644
--- a/src/support/file.cpp
+++ b/src/support/file.cpp
@@ -52,7 +52,7 @@ wasm::Output::Output(const std::string &filename, Flags::BinaryOption binary, Fl
: outfile(), out([this, filename, binary, debug]() {
std::streambuf *buffer;
if (filename.size()) {
- if (debug == Flags::Debug) std::cerr << "Opening '" << filename << std::endl;
+ if (debug == Flags::Debug) std::cerr << "Opening '" << filename << "'" << std::endl;
auto flags = std::ofstream::out | std::ofstream::trunc;
if (binary == Flags::Binary) flags |= std::ofstream::binary;
outfile.open(filename, flags);