diff mplayer.c @ 984:e73777bc679f

Fix missing cast.
author atmosfear
date Mon, 04 Jun 2001 00:36:55 +0000
parents e9dedf1e544e
children f035bd1f2749
line wrap: on
line diff
--- a/mplayer.c	Mon Jun 04 00:27:55 2001 +0000
+++ b/mplayer.c	Mon Jun 04 00:36:55 2001 +0000
@@ -573,7 +573,7 @@
     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"))){