[MPlayer-cvslog] r23679 - in trunk/TOOLS: alaw-gen.c asfinfo.c avi-fix.c dump_mp4.c movinfo.c
diego
subversion at mplayerhq.hu
Wed Jun 27 15:04:29 CEST 2007
Author: diego
Date: Wed Jun 27 15:04:29 2007
New Revision: 23679
Log:
Fix "control reaches end of non-void function" warnings.
Modified:
trunk/TOOLS/alaw-gen.c
trunk/TOOLS/asfinfo.c
trunk/TOOLS/avi-fix.c
trunk/TOOLS/dump_mp4.c
trunk/TOOLS/movinfo.c
Modified: trunk/TOOLS/alaw-gen.c
==============================================================================
--- trunk/TOOLS/alaw-gen.c (original)
+++ trunk/TOOLS/alaw-gen.c Wed Jun 27 15:04:29 2007
@@ -43,5 +43,5 @@ for(i=0;i<256;i++){
fclose(f);
printf("};\n");
-
+return 0;
}
Modified: trunk/TOOLS/asfinfo.c
==============================================================================
--- trunk/TOOLS/asfinfo.c (original)
+++ trunk/TOOLS/asfinfo.c Wed Jun 27 15:04:29 2007
@@ -250,6 +250,6 @@ while(fread(&objh,sizeof(objh),1,f)>0){
fseek(f,pos+objh.size-sizeof(objh),SEEK_SET);
}
-
+return 0;
}
Modified: trunk/TOOLS/avi-fix.c
==============================================================================
--- trunk/TOOLS/avi-fix.c (original)
+++ trunk/TOOLS/avi-fix.c Wed Jun 27 15:04:29 2007
@@ -138,6 +138,5 @@ faszom:
offset=0;
}
-
+return 0;
}
-
Modified: trunk/TOOLS/dump_mp4.c
==============================================================================
--- trunk/TOOLS/dump_mp4.c (original)
+++ trunk/TOOLS/dump_mp4.c Wed Jun 27 15:04:29 2007
@@ -43,4 +43,5 @@ while((c=getchar())>=0){
++pos;
}
+return 0;
}
Modified: trunk/TOOLS/movinfo.c
==============================================================================
--- trunk/TOOLS/movinfo.c (original)
+++ trunk/TOOLS/movinfo.c Wed Jun 27 15:04:29 2007
@@ -334,4 +334,6 @@ int main(int argc,char* argv[])
lschunks(f, 0, 0);
printf("\nSummary: streams: %d video/%d audio\n", v_stream, a_stream);
+
+ return 0;
}
More information about the MPlayer-cvslog
mailing list