Skip to content

Commit 81dfbf9

Browse files
committed
fix lint
1 parent bd8c667 commit 81dfbf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toolchain/zig-wrapper.zig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ fn spawnWindows(arena: mem.Allocator, params: ExecParams) u8 {
142142
proc.env_map = &params.env;
143143
const ret = proc.spawnAndWait() catch |err|
144144
return fatal(
145-
"error spawning {s}: {s}\n",
146-
.{ params.args.items[0], @errorName(err) },
147-
);
145+
"error spawning {s}: {s}\n",
146+
.{ params.args.items[0], @errorName(err) },
147+
);
148148

149149
switch (ret) {
150150
.Exited => |code| return code,

0 commit comments

Comments
 (0)