Fix formatting of system-level code in Ona module
This commit is contained in:
parent
595ad83cdd
commit
dd81ae76ec
|
@ -378,12 +378,14 @@ pub const Path = extern struct {
|
|||
while (components.next()) |component| if (component.len != 0) {
|
||||
for (component) |byte| {
|
||||
if (path.length == max) return error.TooLong;
|
||||
|
||||
path.buffer[path.length] = byte;
|
||||
path.length += 1;
|
||||
}
|
||||
|
||||
if (components.hasNext()) {
|
||||
if (path.length == max) return error.TooLong;
|
||||
|
||||
path.buffer[path.length] = '/';
|
||||
path.length += 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue