Remove redundant semicolons.

[ci skip]
This commit is contained in:
Eddy Jansson
2025-11-09 16:04:53 +01:00
committed by Sam Lantinga
parent 53ee410d7a
commit 836dad75ae
3 changed files with 4 additions and 4 deletions

View File

@@ -458,7 +458,7 @@ static size_t SDLCALL fd_read(void *userdata, void *ptr, size_t size, SDL_IOStat
} else if (result == 0) {
*status = SDL_IO_STATUS_EOF;
} else if (result < size) {
*status = SDL_IO_STATUS_NOT_READY;;
*status = SDL_IO_STATUS_NOT_READY;
}
return (size_t)bytes;
}
@@ -496,7 +496,7 @@ static size_t SDLCALL fd_write(void *userdata, const void *ptr, size_t size, SDL
bytes = 0;
}
} else if (result < size) {
*status = SDL_IO_STATUS_NOT_READY;;
*status = SDL_IO_STATUS_NOT_READY;
}
return (size_t)bytes;