mirror of
https://github.com/pspdev/pspsdk.git
synced 2025-10-04 01:00:09 +00:00
Fix warning
This commit is contained in:
@@ -1099,7 +1099,7 @@ int renameat(int olddirfd, const char *oldpath, int newdirfd, const char *newpat
|
|||||||
{
|
{
|
||||||
// TODO: Do better implementation following https://linux.die.net/man/2/renameat
|
// TODO: Do better implementation following https://linux.die.net/man/2/renameat
|
||||||
// for now use the same as rename
|
// for now use the same as rename
|
||||||
return _rename(oldpath, newpath);
|
return rename(oldpath, newpath);
|
||||||
}
|
}
|
||||||
#endif /* F_renameat */
|
#endif /* F_renameat */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user