Fix indentation

This commit is contained in:
Feoramund
2025-03-04 19:11:32 -05:00
parent 69b6c59ea6
commit 266f15b672
+1 -1
View File
@@ -57,7 +57,7 @@ _clear_env :: proc() {
}
_environ :: proc(allocator: runtime.Allocator) -> (environ: []string, err: Error) {
n := 0
n := 0
for entry := posix.environ[0]; entry != nil; n, entry = n+1, posix.environ[n] {}
r := make([dynamic]string, 0, n, allocator) or_return