diff options
| author | zhibog <zhibog-github@web.de> | 2023-05-03 21:15:50 +0200 |
|---|---|---|
| committer | zhibog <zhibog-github@web.de> | 2023-05-03 21:15:50 +0200 |
| commit | 6b23662ce6ddf5ace42aef622d00dc82fdf2ec8a (patch) | |
| tree | 1738f3a965cfb46d9db3254b36252f60048637a6 | |
| parent | 77d63644059f0103960509de89dc73b5faa26e11 (diff) | |
Fix typo
| -rw-r--r-- | vendor/botan/bindings/botan.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/botan/bindings/botan.odin b/vendor/botan/bindings/botan.odin index b1ec8e35a..b2da62a01 100644 --- a/vendor/botan/bindings/botan.odin +++ b/vendor/botan/bindings/botan.odin @@ -142,7 +142,7 @@ fpe_t :: ^fpe_struct when ODIN_OS == .Windows { foreign import botan_lib "botan.lib" -} else ODIN_OS == .Darwin { +} else when ODIN_OS == .Darwin { foreign import botan_lib "system:botan-3" } else { foreign import botan_lib "system:botan-2" |