diff options
author | Drew DeVault <drew@ddevault.org> | 2025-03-21 10:40:06 +0100 |
---|---|---|
committer | Alexey Yerin <yyp@disroot.org> | 2025-03-21 14:40:42 +0300 |
commit | 100753a060bebb9ad33a2b56722a4e83faba3fea (patch) | |
tree | 236780e4181ccb3e8f5899765101c51c9909d7c3 /cmd | |
parent | ea84d7a04d5f2eb51c06a5cafbfd877228ab8c4a (diff) |
Move bindings from bindings/gi => gi
Signed-off-by: Drew DeVault <drew@ddevault.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/hare-gi/emit.ha | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/hare-gi/emit.ha b/cmd/hare-gi/emit.ha index bec5b4a..5f137ed 100644 --- a/cmd/hare-gi/emit.ha +++ b/cmd/hare-gi/emit.ha @@ -672,7 +672,7 @@ fn emit_c_type(ctx: *context, type_: ctype, flags: ctype_flag...) (void | io::er const (mod, id) = special; switch (mod) { case cmodule::LIBC => - add_import(ctx.current, ["types", "libc"]); + add_import(ctx.current, ["gi", "libc"]); fmt::fprintf(ctx.current.output, "libc::{}", id)?; case cmodule::GLIB => emit_object(ctx, ctx.glib, id)?; |