summaryrefslogtreecommitdiff
path: root/src/wasm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm.h')
-rw-r--r--src/wasm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasm.h b/src/wasm.h
index ff273e5c0..6aa568210 100644
--- a/src/wasm.h
+++ b/src/wasm.h
@@ -251,7 +251,7 @@ typedef std::vector<Expression*> ExpressionList; // TODO: optimize
class Nop : public Expression {
std::ostream& print(std::ostream &o, unsigned indent) override {
- o << "nop";
+ printMinorOpening(o, "nop") << ')';
return o;
}
};