Index: src/wasm/wasm-interpreter.cc |
diff --git a/src/wasm/wasm-interpreter.cc b/src/wasm/wasm-interpreter.cc |
index 741298f57a1171b63a0bddea87492d3207466371..6e049ffd2558c984b28cd4885826ea913ebf8d00 100644 |
--- a/src/wasm/wasm-interpreter.cc |
+++ b/src/wasm/wasm-interpreter.cc |
@@ -1698,7 +1698,7 @@ class ThreadImpl : public WasmInterpreter::Thread { |
WasmVal PopArity(size_t arity) { |
if (arity == 0) return WasmVal(); |
- CHECK_EQ(1, arity); |
+ CHECK_EQ(1u, arity); |
return Pop(); |
} |