changeset 23659:f15f95c2671a

Fix "control reaches end of non-void function" warnings.
author diego
date Wed, 27 Jun 2007 13:04:29 +0000
parents 22201fbf9c0e
children 3ab096c77b9e
files TOOLS/alaw-gen.c TOOLS/asfinfo.c TOOLS/avi-fix.c TOOLS/dump_mp4.c TOOLS/movinfo.c
diffstat 5 files changed, 6 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/alaw-gen.c	Wed Jun 27 13:01:43 2007 +0000
+++ b/TOOLS/alaw-gen.c	Wed Jun 27 13:04:29 2007 +0000
@@ -43,5 +43,5 @@
 fclose(f);
 printf("};\n");
 
-
+return 0;
 }
--- a/TOOLS/asfinfo.c	Wed Jun 27 13:01:43 2007 +0000
+++ b/TOOLS/asfinfo.c	Wed Jun 27 13:04:29 2007 +0000
@@ -250,6 +250,6 @@
   fseek(f,pos+objh.size-sizeof(objh),SEEK_SET);
 }
 
-
+return 0;
 }
 
--- a/TOOLS/avi-fix.c	Wed Jun 27 13:01:43 2007 +0000
+++ b/TOOLS/avi-fix.c	Wed Jun 27 13:04:29 2007 +0000
@@ -138,6 +138,5 @@
     offset=0;
 }
 
-
+return 0;
 }
-
--- a/TOOLS/dump_mp4.c	Wed Jun 27 13:01:43 2007 +0000
+++ b/TOOLS/dump_mp4.c	Wed Jun 27 13:04:29 2007 +0000
@@ -43,4 +43,5 @@
     ++pos;
 }
 
+return 0;
 }
--- a/TOOLS/movinfo.c	Wed Jun 27 13:01:43 2007 +0000
+++ b/TOOLS/movinfo.c	Wed Jun 27 13:04:29 2007 +0000
@@ -334,4 +334,6 @@
     lschunks(f, 0, 0);
 
     printf("\nSummary: streams: %d video/%d audio\n", v_stream, a_stream);
+
+    return 0;
 }