Fixed symbol typo.
This commit is contained in:
parent
e3403d3a25
commit
175397ca41
1 changed files with 2 additions and 2 deletions
|
@ -318,8 +318,8 @@ static Sint64 SDLCALL
|
||||||
stdio_seek(SDL_RWops * context, Sint64 offset, int whence)
|
stdio_seek(SDL_RWops * context, Sint64 offset, int whence)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_FSEEKO64
|
#ifdef HAVE_FSEEKO64
|
||||||
if (fseek64o(context->hidden.stdio.fp, (off64_t)offset, whence) == 0) {
|
if (fseeko64(context->hidden.stdio.fp, (off64_t)offset, whence) == 0) {
|
||||||
return ftell64o(context->hidden.stdio.fp);
|
return ftello64(context->hidden.stdio.fp);
|
||||||
}
|
}
|
||||||
#elif defined(HAVE_FSEEKO)
|
#elif defined(HAVE_FSEEKO)
|
||||||
if (fseeko(context->hidden.stdio.fp, (off_t)offset, whence) == 0) {
|
if (fseeko(context->hidden.stdio.fp, (off_t)offset, whence) == 0) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue