From eb53e156b91fd672fa8a9c594f92de50b09b491f Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Thu, 10 Apr 2025 08:23:35 -0400 Subject: [PATCH] wasm: remove something added as a bit to demonstrate how the memory range was statically allocated Signed-off-by: Xe Iaso --- wasm/wasm.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/wasm/wasm.go b/wasm/wasm.go index 4f21aac2..8f1aeb23 100644 --- a/wasm/wasm.go +++ b/wasm/wasm.go @@ -111,8 +111,6 @@ func (r *Runner) dataPtr(ctx context.Context) (uint32, error) { return 0, err } - fmt.Printf("data pointer: 0x%x\n", results[0]) - return uint32(results[0]), nil }