# HG changeset patch # User diego # Date 1209112466 0 # Node ID b3661a203f8b6570b5ea9cb4287fbd589b9aad2b # Parent bfa2c4d5a27360f4fb6cfb481649f16b94b58e1f Add return statement, fixes the warning: test.c:75: warning: control reaches end of non-void function diff -r bfa2c4d5a273 -r b3661a203f8b mp3lib/test.c --- 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; }