aboutsummaryrefslogtreecommitdiff
path: root/bindgen
diff options
context:
space:
mode:
authorBarna Mumtyan <barnamumtyan@gmail.com>2024-05-04 20:03:37 +0300
committerBarna Mumtyan <barnamumtyan@gmail.com>2024-05-04 20:03:37 +0300
commit1c34132674de06a248e8c01226ceb35f9c6d79c8 (patch)
tree5412e07dec0f80c764b36accb86a7152e6266b4f /bindgen
parentd06038a40993ac285ca061b10791c17df08ceb78 (diff)
Fixed an indentation.
Diffstat (limited to 'bindgen')
-rw-r--r--bindgen/gen_odin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindgen/gen_odin.py b/bindgen/gen_odin.py
index 31638fd6..d2bc55df 100644
--- a/bindgen/gen_odin.py
+++ b/bindgen/gen_odin.py
@@ -386,7 +386,7 @@ def gen_c_imports(inp, c_prefix, prefix):
l( ' when ODIN_ARCH == .arm64 {')
l(f' when DEBUG {{ foreign import {clib_import} {{ "{clib_prefix}_macos_arm64_gl_debug.a"{macos_gl_libs} }} }}')
l(f' else {{ foreign import {clib_import} {{ "{clib_prefix}_macos_arm64_gl_release.a"{macos_gl_libs} }} }}')
- l( ' } else {')
+ l( ' } else {')
l(f' when DEBUG {{ foreign import {clib_import} {{ "{clib_prefix}_macos_x64_gl_debug.a"{macos_gl_libs} }} }}')
l(f' else {{ foreign import {clib_import} {{ "{clib_prefix}_macos_x64_gl_release.a"{macos_gl_libs} }} }}')
l( ' }')