aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2022-07-19 20:36:51 +0200
committerAndre Weissflog <floooh@gmail.com>2022-07-19 20:36:51 +0200
commit9d42b33edeae13a4b2ffe975176d70c7a1aaa906 (patch)
tree66087b58398c920cd3cc395196b7e4cc3bf71e18
parent02222079756e94b10a24474dfd2566c3eafed428 (diff)
gen_zig.py: minor code cleanup
-rw-r--r--bindgen/gen_zig.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindgen/gen_zig.py b/bindgen/gen_zig.py
index d14145f0..4132fb1c 100644
--- a/bindgen/gen_zig.py
+++ b/bindgen/gen_zig.py
@@ -483,7 +483,7 @@ def gen_imports(inp, dep_prefixes):
for dep_prefix in dep_prefixes:
dep_module_name = module_names[dep_prefix]
l(f'const {dep_prefix[:-1]} = @import("{dep_module_name}.zig");')
- l('')
+ l('')
def gen_helpers(inp):
l('// helper function to convert a C string to a Zig string slice')