Fix missing cast.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@985 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
atmosfear 2001-06-04 00:36:55 +00:00
parent 5bc44560d0
commit 9a63fa2ce3
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ if(!filename){
printf("Invalid audio output driver name: %s\nUse '-ao help' to get a list of available audio drivers.\n",audio_driver);
return 0;
}
if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,dsp);
if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,(int)dsp);
// check codec.conf
if(!parse_codec_cfg(get_path("codecs.conf"))){