changeset 13803:0bd7ccf63c54

Declare a prototype for the function before it is used. Otherwise some compiler versions will "optimize" them away, and linking will fail.
author mosu
date Sat, 30 Oct 2004 08:42:25 +0000
parents 08c90d8c1325
children 5c0fda3b83c3
files libmpdemux/demux_ogg.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/demux_ogg.c	Sat Oct 30 08:17:48 2004 +0000
+++ b/libmpdemux/demux_ogg.c	Sat Oct 30 08:42:25 2004 +0000
@@ -425,6 +425,8 @@
   return 0;
 }
 
+static int demux_ogg_sub_reverse_id(demuxer_t *demuxer, int id);
+
 /// Try to print out comments and also check for LANGUAGE= tag
 static void demux_ogg_check_comments(demuxer_t *d, ogg_stream_t *os, int id, vorbis_comment *vc)
 {