From 9a63fa2ce3ab2411c078b9b2eeb9858d25f70dec Mon Sep 17 00:00:00 2001 From: atmosfear Date: Mon, 4 Jun 2001 00:36:55 +0000 Subject: [PATCH] Fix missing cast. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@985 b3059339-0415-0410-9bf9-f77b7e298cf2 --- mplayer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mplayer.c b/mplayer.c index 4878842745..830aa3f843 100644 --- a/mplayer.c +++ b/mplayer.c @@ -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"))){