psp/SDL_sysfilesystem.c: fixed a minor compiler warning.
src/filesystem/psp/SDL_sysfilesystem.c: In function 'SDL_GetPrefPath': src/filesystem/psp/SDL_sysfilesystem.c:71: warning: passing argument 1 of 'free' discards qualifiers from pointer target typemain
parent
21914b4e2f
commit
df1474b46e
|
@ -51,7 +51,7 @@ SDL_GetPrefPath(const char *org, const char *app)
|
||||||
{
|
{
|
||||||
char *retval = NULL;
|
char *retval = NULL;
|
||||||
size_t len;
|
size_t len;
|
||||||
const char *base = SDL_GetBasePath();
|
char *base = SDL_GetBasePath();
|
||||||
if (!app) {
|
if (!app) {
|
||||||
SDL_InvalidParamError("app");
|
SDL_InvalidParamError("app");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -62,7 +62,7 @@ SDL_GetPrefPath(const char *org, const char *app)
|
||||||
|
|
||||||
len = SDL_strlen(base) + SDL_strlen(org) + SDL_strlen(app) + 4;
|
len = SDL_strlen(base) + SDL_strlen(org) + SDL_strlen(app) + 4;
|
||||||
retval = (char *) SDL_malloc(len);
|
retval = (char *) SDL_malloc(len);
|
||||||
|
|
||||||
if (*org) {
|
if (*org) {
|
||||||
SDL_snprintf(retval, len, "%s%s/%s/", base, org, app);
|
SDL_snprintf(retval, len, "%s%s/%s/", base, org, app);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue