Skip to content

Commit

Permalink
music_ogg.c: fix ov_time_seek() signature for libvorbisidec.
Browse files Browse the repository at this point in the history
reported by Vitaly Novichkov.
  • Loading branch information
sezero committed Nov 25, 2019
1 parent 1bc6195 commit b431cc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codecs/music_ogg.c
Expand Up @@ -96,7 +96,7 @@ static int OGG_Load(void)
FUNCTION_LOADER(ov_pcm_total, ogg_int64_t (*)(OggVorbis_File *,int))
#ifdef OGG_USE_TREMOR
FUNCTION_LOADER(ov_read, long (*)(OggVorbis_File *,char *,int,int *))
FUNCTION_LOADER(ov_time_seek, long (*)(OggVorbis_File *,ogg_int64_t))
FUNCTION_LOADER(ov_time_seek, int (*)(OggVorbis_File *,ogg_int64_t))
#else
FUNCTION_LOADER(ov_read, long (*)(OggVorbis_File *,char *,int,int,int,int,int *))
FUNCTION_LOADER(ov_time_seek, int (*)(OggVorbis_File *,double))
Expand Down

0 comments on commit b431cc2

Please sign in to comment.