We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481e0ce commit 9cffaf1Copy full SHA for 9cffaf1
src/BuildInterface.zig
@@ -173,7 +173,7 @@ const ContentWriter = struct {
173
try cw.code.writeByte('\n');
174
175
if (part.name) |name| {
176
- try cw.code.print(" name {s}\n", .{name});
+ try cw.code.print(" name \"{}\"\n", .{std.zig.fmtEscapes(name)});
177
}
178
if (part.offset) |offset| {
179
try cw.code.print(" offset {d}\n", .{offset});
0 commit comments