We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3922bce commit a10578aCopy full SHA for a10578a
src/filesystem/posix/SDL_sysfsops.c
@@ -74,7 +74,7 @@ bool SDL_SYS_RemovePath(const char *path)
74
bool SDL_SYS_RenamePath(const char *oldpath, const char *newpath)
75
{
76
if (rename(oldpath, newpath) < 0) {
77
- return SDL_SetError("Can't remove path: %s", strerror(errno));
+ return SDL_SetError("Can't rename path: %s", strerror(errno));
78
}
79
return true;
80
0 commit comments