Skip to content

Commit

Permalink
Fix warning. NFC. (#1580)
Browse files Browse the repository at this point in the history
We really should enable Werror on CI..
  • Loading branch information
sbc100 committed Dec 3, 2020
1 parent 2a487fc commit 8e5db7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wasm2c/wasm-rt-impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void wasm_rt_trap(wasm_rt_trap_t code) {
static bool func_types_are_equal(FuncType* a, FuncType* b) {
if (a->param_count != b->param_count || a->result_count != b->result_count)
return 0;
int i;
uint32_t i;
for (i = 0; i < a->param_count; ++i)
if (a->params[i] != b->params[i])
return 0;
Expand Down

0 comments on commit 8e5db7d

Please sign in to comment.