# HG changeset patch # User diego # Date 1182949469 0 # Node ID f15f95c2671ab1c9ce3c20d89c096e1316b8e13d # Parent 22201fbf9c0ecff0f356f355f00f3474dc113043 Fix "control reaches end of non-void function" warnings. diff -r 22201fbf9c0e -r f15f95c2671a TOOLS/alaw-gen.c --- 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; } diff -r 22201fbf9c0e -r f15f95c2671a TOOLS/asfinfo.c --- 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; } diff -r 22201fbf9c0e -r f15f95c2671a TOOLS/avi-fix.c --- 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; } - diff -r 22201fbf9c0e -r f15f95c2671a TOOLS/dump_mp4.c --- 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; } diff -r 22201fbf9c0e -r f15f95c2671a TOOLS/movinfo.c --- 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; }