# HG changeset patch # User Ryan C. Gordon # Date 1002505584 0 # Node ID 095a066b2cd2bd34d8412a14e68b883ca606bad4 # Parent 4331b1b7e7dbf92a93a4111ff70a981f5823b5eb Portability fix. diff -r 4331b1b7e7db -r 095a066b2cd2 decoders/ogg.c --- 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 */