mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
stage2: building musl: fix typo in replacing path separators
This commit is contained in:
parent
1337f0bc6a
commit
a23b1b4254
@ -235,7 +235,7 @@ fn addSrcFile(arena: *Allocator, source_table: *std.StringArrayHashMap(Ext), fil
|
||||
const mutable_file_path = try arena.dupe(u8, file_path);
|
||||
for (mutable_file_path) |*c| {
|
||||
if (c.* == '/') {
|
||||
c.* == path.sep;
|
||||
c.* = path.sep;
|
||||
}
|
||||
}
|
||||
break :blk mutable_file_path;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user