mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-04-22 11:21:18 +02:00
correct unexpected end-of-file found
This commit is contained in:
parent
3acaf3b396
commit
fdf1e062ec
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user