File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ wasm_runtime_malloc_internal(unsigned int size)
189
189
{
190
190
if (memory_mode == MEMORY_MODE_UNKNOWN ) {
191
191
LOG_WARNING (
192
- "wasm_runtime_malloc failed: memory hasn't been initialize .\n" );
192
+ "wasm_runtime_malloc failed: memory hasn't been initialized .\n" );
193
193
return NULL ;
194
194
}
195
195
else if (memory_mode == MEMORY_MODE_POOL ) {
@@ -215,7 +215,7 @@ wasm_runtime_realloc_internal(void *ptr, unsigned int size)
215
215
{
216
216
if (memory_mode == MEMORY_MODE_UNKNOWN ) {
217
217
LOG_WARNING (
218
- "wasm_runtime_realloc failed: memory hasn't been initialize .\n" );
218
+ "wasm_runtime_realloc failed: memory hasn't been initialized .\n" );
219
219
return NULL ;
220
220
}
221
221
else if (memory_mode == MEMORY_MODE_POOL ) {
You can’t perform that action at this time.
0 commit comments