changeset 984:e73777bc679f

Fix missing cast.
author atmosfear
date Mon, 04 Jun 2001 00:36:55 +0000
parents cb0e3b29a0dd
children 95391cf9e994
files mplayer.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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"))){