From 70e8d97ee1028aa491286195dfa75f7fc49d4133 Mon Sep 17 00:00:00 2001 From: zhibog Date: Tue, 22 Feb 2022 20:13:49 +0100 Subject: [PATCH] Fix procedure --- vendor/botan/siphash/siphash.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/botan/siphash/siphash.odin b/vendor/botan/siphash/siphash.odin index ae8e19917..c2b7b64f4 100644 --- a/vendor/botan/siphash/siphash.odin +++ b/vendor/botan/siphash/siphash.odin @@ -243,7 +243,7 @@ update :: proc "contextless" (ctx: ^botan.mac_t, data: []byte) { botan.mac_update(ctx^, len(data) == 0 ? nil : &data[0], uint(len(data))) } -final :: proc "contextless" (ctx: ^botan.mac_t, dst: []byte) { +final :: proc(ctx: ^botan.mac_t, dst: []byte) { botan.mac_final(ctx^, &dst[0]) reset(ctx) }