From fc0fb5968a98f3ba261cffbb679baa41eaf563c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Van=20Canneyt?= Date: Thu, 28 Nov 2024 16:17:46 +0100 Subject: [PATCH] * Make names unique across modules --- packages/wasm-utils/src/wasm.timer.shared.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/wasm-utils/src/wasm.timer.shared.pas b/packages/wasm-utils/src/wasm.timer.shared.pas index a6597bcdf3..fa03b707d9 100644 --- a/packages/wasm-utils/src/wasm.timer.shared.pas +++ b/packages/wasm-utils/src/wasm.timer.shared.pas @@ -23,8 +23,8 @@ Type const TimerExportName = 'timer'; - TimerFN_Allocate = 'allocate'; - TimerFN_DeAllocate = 'deallocate'; + TimerFN_Allocate = 'allocate_timer'; + TimerFN_DeAllocate = 'deallocate_timer'; implementation