mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-25 14:09:10 +00:00
Fixed signed/unsigned comparison warning
This commit is contained in:
parent
491f18eea3
commit
086a7a4687
1 changed files with 2 additions and 2 deletions
|
@ -784,8 +784,8 @@ static int dynamic_mem_realloc(IOStreamDynamicMemData *iodata, size_t size)
|
|||
static size_t SDLCALL dynamic_mem_write(void *userdata, const void *ptr, size_t size, SDL_IOStatus *status)
|
||||
{
|
||||
IOStreamDynamicMemData *iodata = (IOStreamDynamicMemData *) userdata;
|
||||
if (size > (iodata->data.stop - iodata->data.here)) {
|
||||
if (size > (iodata->end - iodata->data.here)) {
|
||||
if (size > (size_t)(iodata->data.stop - iodata->data.here)) {
|
||||
if (size > (size_t)(iodata->end - iodata->data.here)) {
|
||||
if (dynamic_mem_realloc(iodata, size) < 0) {
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue