From 175397ca411bb3d4e86837efcf651faa20438df1 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 3 Nov 2012 22:46:03 -0400 Subject: [PATCH] Fixed symbol typo. --- src/file/SDL_rwops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/file/SDL_rwops.c b/src/file/SDL_rwops.c index 3c519ef98..494955423 100644 --- a/src/file/SDL_rwops.c +++ b/src/file/SDL_rwops.c @@ -318,8 +318,8 @@ static Sint64 SDLCALL stdio_seek(SDL_RWops * context, Sint64 offset, int whence) { #ifdef HAVE_FSEEKO64 - if (fseek64o(context->hidden.stdio.fp, (off64_t)offset, whence) == 0) { - return ftell64o(context->hidden.stdio.fp); + if (fseeko64(context->hidden.stdio.fp, (off64_t)offset, whence) == 0) { + return ftello64(context->hidden.stdio.fp); } #elif defined(HAVE_FSEEKO) if (fseeko(context->hidden.stdio.fp, (off_t)offset, whence) == 0) {