Fixed symbol typo.
--- a/src/file/SDL_rwops.c Mon Oct 22 15:35:19 2012 -0700
+++ b/src/file/SDL_rwops.c Sat Nov 03 22:46:03 2012 -0400
@@ -318,8 +318,8 @@
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) {