summaryrefslogtreecommitdiffstats
path: root/TOOLS/asfinfo.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 13:04:29 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-06-27 13:04:29 +0000
commit7f811fc47baf18af707f9c2606a041bdb60e7c5f (patch)
tree14cff7c43355bb7615ab668ec9e92e465b53b1ea /TOOLS/asfinfo.c
parentdc208e99cbf453ee6631a2fdd7f906625fdd46d5 (diff)
downloadmpv-7f811fc47baf18af707f9c2606a041bdb60e7c5f.tar.bz2
mpv-7f811fc47baf18af707f9c2606a041bdb60e7c5f.tar.xz
Fix "control reaches end of non-void function" warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23679 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'TOOLS/asfinfo.c')
-rw-r--r--TOOLS/asfinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/TOOLS/asfinfo.c b/TOOLS/asfinfo.c
index ab29aa865f..a8e1fce8ff 100644
--- a/TOOLS/asfinfo.c
+++ b/TOOLS/asfinfo.c
@@ -250,6 +250,6 @@ while(fread(&objh,sizeof(objh),1,f)>0){
fseek(f,pos+objh.size-sizeof(objh),SEEK_SET);
}
-
+return 0;
}