Fix another typo

This commit is contained in:
gingerBill
2025-03-27 12:55:41 +00:00
parent 1fc1a7fd51
commit 9b3d381af0

View File

@@ -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 {};
}
}