summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-02-27 17:00:29 +0100
committerHenry Gressmann <mail@henrygressmann.de>2024-02-27 17:00:29 +0100
commit417bb70c0f8c8f8781f675481e5336affd209183 (patch)
treeb2644fc05d37b320035a2997867de61f804f5b6c /crates
parentef13c584654e243dfd4c1c9d3979a386c297dfd3 (diff)
chore: update readme
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
-rw-r--r--crates/tinywasm/src/store/memory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/tinywasm/src/store/memory.rs b/crates/tinywasm/src/store/memory.rs
index 1c8acce..ea820da 100644
--- a/crates/tinywasm/src/store/memory.rs
+++ b/crates/tinywasm/src/store/memory.rs
@@ -2,7 +2,7 @@ use alloc::vec;
use alloc::vec::Vec;
use tinywasm_types::{MemoryType, ModuleInstanceAddr};
-use crate::{Error, Result};
+use crate::{log, Error, Result};
const PAGE_SIZE: usize = 65536;
const MAX_PAGES: usize = 65536;