aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkcbanner <kcbanner@gmail.com>2023-01-21 16:22:17 -0500
committerkcbanner <kcbanner@gmail.com>2023-01-23 13:48:37 -0500
commit8dd010725544e6eae4c015f1cf86d9020cefe876 (patch)
treec1f390244f8af8504b85235e70676d260ffea184 /src
parentd162ebfa35b8ae2902ef92290bdcea77d62e6e90 (diff)
downloadzig-8dd010725544e6eae4c015f1cf86d9020cefe876.tar.gz
zig-8dd010725544e6eae4c015f1cf86d9020cefe876.zip
zig fmt fixup
Diffstat (limited to 'src')
-rw-r--r--src/codegen/c.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen/c.zig b/src/codegen/c.zig
index 18b3a32c36..68c20ea49c 100644
--- a/src/codegen/c.zig
+++ b/src/codegen/c.zig
@@ -1479,7 +1479,7 @@ pub const DeclGen = struct {
try w.print("zig_callconv({s}) ", .{call_conv});
}
- if (fn_info.alignment > 0 and kind == .Complete) try w.print(" zig_align_fn({})", .{ fn_info.alignment });
+ if (fn_info.alignment > 0 and kind == .Complete) try w.print(" zig_align_fn({})", .{fn_info.alignment});
try dg.renderDeclName(w, dg.decl_index, export_index);
try w.writeByte('(');