Keep -vet happy

This commit is contained in:
gingerBill
2020-12-14 14:36:45 +00:00
parent aa2562fe7c
commit f6e2d74d10
5 changed files with 11 additions and 12 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
// To process paths usch as URLs that depend on forward slashes regardless of the OS, use the path package
package filepath
import "core:os"
import "core:strings"
// is_separator checks whether the byte is a valid separator character
@@ -265,7 +264,7 @@ rel :: proc(base_path, target_path: string, allocator := context.allocator) -> (
}
buf := make([]byte, size);
n := copy(buf, "..");
for i in 0..<seps {
for in 0..<seps {
buf[n] = SEPARATOR;
copy(buf[n+1:], "..");
n += 3;