correct unexpected end-of-file found

This commit is contained in:
Nguyen Truong An 2025-02-27 18:55:25 +00:00
parent 3acaf3b396
commit fdf1e062ec

View File

@ -458,7 +458,9 @@ Error DirAccessUnix::create_link(String p_source, String p_target) {
if (symlink(p_source.utf8().get_data(), p_target.utf8().get_data()) == 0) {
return OK;
} else {
} else
#endif
{
return FAILED;
}
#endif