mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 05:08:14 +00: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);
|
array_resize(&buf, size);
|
||||||
|
|
||||||
cwd = getcwd(buf.data, buf.count);
|
cwd = getcwd(buf.data, buf.count);
|
||||||
if (cwd == nullptr && errno() != ERANGE) {
|
if (cwd == nullptr && errno != ERANGE) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user