diff decoders/ogg.c @ 122:095a066b2cd2

Portability fix.
author Ryan C. Gordon <icculus@icculus.org>
date Mon, 08 Oct 2001 01:46:24 +0000
parents 40de367eb59e
children 1df5c106504e
line wrap: on
line diff
--- a/decoders/ogg.c	Mon Oct 08 01:44:59 2001 +0000
+++ b/decoders/ogg.c	Mon Oct 08 01:46:24 2001 +0000
@@ -99,7 +99,7 @@
     return((size_t) SDL_RWread((SDL_RWops *) datasource, ptr, size, nmemb));
 } /* RWops_ogg_read */
 
-static int RWops_ogg_seek(void *datasource, int64_t offset, int whence)
+static int RWops_ogg_seek(void *datasource, ogg_int64_t offset, int whence)
 {
     return(SDL_RWseek((SDL_RWops *) datasource, offset, whence));
 } /* RWops_ogg_seek */