mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
Fix another typo
This commit is contained in:
+1
-1
@@ -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