mirror of
https://github.com/libsdl-org/SDL.git
synced 2024-11-27 05:43:29 +08:00
SDL_SYS_RenamePath(): Fix error message.
This commit is contained in:
parent
3922bcec95
commit
a10578acbd
@ -74,7 +74,7 @@ bool SDL_SYS_RemovePath(const char *path)
|
||||
bool SDL_SYS_RenamePath(const char *oldpath, const char *newpath)
|
||||
{
|
||||
if (rename(oldpath, newpath) < 0) {
|
||||
return SDL_SetError("Can't remove path: %s", strerror(errno));
|
||||
return SDL_SetError("Can't rename path: %s", strerror(errno));
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user