diff --git a/core/path/slashpath/path.odin b/core/path/slashpath/path.odin index 8ac10e655..865f619bf 100644 --- a/core/path/slashpath/path.odin +++ b/core/path/slashpath/path.odin @@ -146,7 +146,7 @@ clean :: proc(path: string, allocator := context.allocator) -> string { } // join joins numerous path elements into a single path -join :: proc(elems: ..string, allocator := context.allocator) -> string { +join :: proc(elems: []string, allocator := context.allocator) -> string { context.allocator = allocator for elem, i in elems { if elem != "" {