mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 17:34:34 +00:00
Fix another typo
This commit is contained in:
@@ -86,7 +86,7 @@ String get_working_directory(gbAllocator allocator) {
|
||||
array_resize(&buf, size);
|
||||
|
||||
cwd = getcwd(buf.data, buf.count);
|
||||
if (cwd == nullptr && errno() != ERANGE) {
|
||||
if (cwd == nullptr && errno != ERANGE) {
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user