mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-13 00:51:20 +00:00
Use minimum limit as initial table size (#196)
This commit is contained in:
committed by
Mackenzie Clark
parent
a6d72bdec9
commit
c9969f269c
@ -19,7 +19,7 @@ int main()
|
||||
|
||||
uint32_t len = wasmer_table_length(table);
|
||||
printf("Table length: %d\n", len);
|
||||
assert(len == 15);
|
||||
assert(len == 10);
|
||||
|
||||
// wasmer_result_t grow_result1 = wasmer_table_grow(table, 5);
|
||||
// assert(grow_result1 == WASMER_OK);
|
||||
|
Reference in New Issue
Block a user