[MPlayer-cvslog] r26534 - trunk/mp3lib/test.c

diego subversion at mplayerhq.hu
Fri Apr 25 10:34:27 CEST 2008


Author: diego
Date: Fri Apr 25 10:34:26 2008
New Revision: 26534

Log:
Add return statement, fixes the warning:
test.c:75: warning: control reaches end of non-void function


Modified:
   trunk/mp3lib/test.c

Modified: trunk/mp3lib/test.c
==============================================================================
--- trunk/mp3lib/test.c	(original)
+++ trunk/mp3lib/test.c	Fri Apr 25 10:34:26 2008
@@ -70,5 +70,5 @@ int main(int argc,char* argv[]){
   printf("CPU usage at normal playback: %5.2f %%\n",time1*0.0001f/length);
   
   fclose(mp3file);
-  
+  return 0;
 }



More information about the MPlayer-cvslog mailing list