changeset 26502:b3661a203f8b

Add return statement, fixes the warning: test.c:75: warning: control reaches end of non-void function
author diego
date Fri, 25 Apr 2008 08:34:26 +0000
parents bfa2c4d5a273
children 4cbbdb2e71ca
files mp3lib/test.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mp3lib/test.c	Fri Apr 25 08:33:43 2008 +0000
+++ b/mp3lib/test.c	Fri Apr 25 08:34:26 2008 +0000
@@ -70,5 +70,5 @@
   printf("CPU usage at normal playback: %5.2f %%\n",time1*0.0001f/length);
   
   fclose(mp3file);
-  
+  return 0;
 }