Fix a couple of 'return type defaults to int' and 'control reaches end of

non-void function' warnings in test code.

Originally committed as revision 11491 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2008-01-10 10:35:37 +00:00
parent c33820e52e
commit f3635240b7
5 changed files with 10 additions and 4 deletions

View File

@@ -114,7 +114,7 @@ int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq){
#ifdef TEST
#include "integer.h"
#undef printf
main(void){
int main(void){
int64_t a,b,c,d,e;
for(a=7; a<(1LL<<62); a+=a/3+1){
@@ -136,5 +136,6 @@ main(void){
}
}
}
return 0;
}
#endif