Add return statement, fixes the warning:

test2.c:72: warning: control reaches end of non-void function


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26532 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-04-25 08:32:26 +00:00
parent d0e5a5224b
commit c41f3b9244
1 changed files with 1 additions and 1 deletions

View File

@ -68,5 +68,5 @@ int main(int argc,char* argv[]){
}
fclose(mp3file);
return 0;
}