Fixed compiler warning
This commit is contained in:
parent
c8fa5fcfd5
commit
c750316a19
2 changed files with 2 additions and 2 deletions
|
@ -376,7 +376,7 @@ extern DECLSPEC int SDLCALL SDL_SetMemoryFunctions(SDL_malloc_func malloc_func,
|
||||||
/**
|
/**
|
||||||
* \brief Get the number of outstanding (unfreed) allocations
|
* \brief Get the number of outstanding (unfreed) allocations
|
||||||
*/
|
*/
|
||||||
extern DECLSPEC int SDLCALL SDL_GetNumAllocations();
|
extern DECLSPEC int SDLCALL SDL_GetNumAllocations(void);
|
||||||
|
|
||||||
extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
|
extern DECLSPEC char *SDLCALL SDL_getenv(const char *name);
|
||||||
extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, int overwrite);
|
extern DECLSPEC int SDLCALL SDL_setenv(const char *name, const char *value, int overwrite);
|
||||||
|
|
|
@ -5312,7 +5312,7 @@ int SDL_SetMemoryFunctions(SDL_malloc_func malloc_func,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int SDL_GetNumAllocations()
|
int SDL_GetNumAllocations(void)
|
||||||
{
|
{
|
||||||
return SDL_AtomicGet(&s_mem.num_allocations);
|
return SDL_AtomicGet(&s_mem.num_allocations);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue