aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/c/Type.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c/Type.zig b/src/codegen/c/Type.zig
index 451bbc7818..db7455ebb0 100644
--- a/src/codegen/c/Type.zig
+++ b/src/codegen/c/Type.zig
@@ -78,7 +78,7 @@ pub fn isInteger(ctype: CType) bool {
pub fn signedness(ctype: CType, mod: *Module) std.builtin.Signedness {
return switch (ctype.index) {
- .char => mod.resolved_target.result.charSignedness(),
+ .char => mod.resolved_target.result.cCharSignedness(),
.@"signed char",
.short,
.int,