Skip to content

Commit

Permalink
examples/app: fix a copy-and-paste botch
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Aug 14, 2023
1 parent f305ddd commit e550798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/app/app.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ main(int argc, char **argv)
if (funcidx_with_largest_jump_table == UINT32_MAX ||
ei->njumps > largest_jump_table) {
funcidx_with_largest_jump_table = i;
largest_jump_table = lt->nlocals;
largest_jump_table = ei->njumps;
}
#if defined(TOYWASM_USE_SMALL_CELLS)
if (funcidx_with_largest_type_annotations == UINT32_MAX ||
Expand Down

0 comments on commit e550798

Please sign in to comment.