summaryrefslogtreecommitdiffstats
path: root/TOOLS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-27 09:47:17 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-27 09:47:17 +0000
commit8826704061374e3c812d076808182b91e9ca02d3 (patch)
tree276c360df55b7b41ff87c4fad96896baa4e09f45 /TOOLS
parentea66106b4c8dba606fa47829cabd74efffe96c53 (diff)
downloadmpv-8826704061374e3c812d076808182b91e9ca02d3.tar.bz2
mpv-8826704061374e3c812d076808182b91e9ca02d3.tar.xz
warning fixes:
movinfo.c: In function 'video_stream_info': movinfo.c:80: warning: control reaches end of non-void function movinfo.c: In function 'audio_stream_info': movinfo.c:99: warning: control reaches end of non-void function movinfo.c: In function 'userdata_info': movinfo.c:152: warning: control reaches end of non-void function git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24222 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS')
-rw-r--r--TOOLS/movinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/TOOLS/movinfo.c b/TOOLS/movinfo.c
index efc7934962..a1134344b0 100644
--- a/TOOLS/movinfo.c
+++ b/TOOLS/movinfo.c
@@ -63,7 +63,7 @@ unsigned int read_dword(FILE *f){
return (atom_size_b[0]<<24)|(atom_size_b[1]<<16)|(atom_size_b[2]<<8)|atom_size_b[3];
}
-void *video_stream_info(FILE *f, int len)
+void video_stream_info(FILE *f, int len)
{
int orig_pos = ftell(f);
unsigned char data[len-8];
@@ -79,7 +79,7 @@ void *video_stream_info(FILE *f, int len)
fseek(f,orig_pos,SEEK_SET);
}
-void *audio_stream_info(FILE *f, int len)
+void audio_stream_info(FILE *f, int len)
{
int orig_pos = ftell(f);
unsigned char data[len-8];
@@ -98,7 +98,7 @@ void *audio_stream_info(FILE *f, int len)
fseek(f,orig_pos,SEEK_SET);
}
-void *userdata_info(FILE *f, int len, int pos, int level)
+void userdata_info(FILE *f, int len, int pos, int level)
{
int orig_pos = pos; /*ftell(f);*/
unsigned int atom_size = 1;