cosmetics: Fix test program warnings.
authorDiego Biurrun <diego@biurrun.de>
Fri, 6 Mar 2009 00:55:50 +0000 (00:55 +0000)
committerDiego Biurrun <diego@biurrun.de>
Fri, 6 Mar 2009 00:55:50 +0000 (00:55 +0000)
Originally committed as revision 17849 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/timefilter.c

index e1cff8d5e56a0c2912b66e58705baa9d1d8813e0..79d417aaf6bd31f795359da434e64289d40cba1d 100644 (file)
@@ -74,7 +74,8 @@ double ff_timefilter_update(TimeFilter *self, double system_time, double period)
 }
 
 #ifdef TEST
-main(){
+int main(void)
+{
     double n0,n1;
 #define SAMPLES 1000
     double ideal[SAMPLES];
@@ -118,5 +119,6 @@ main(){
         }
         printf("\n");
     }
+    return 0;
 }
 #endif