diff options
author | cehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-08 22:30:51 +0000 |
---|---|---|
committer | cehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-08 22:30:51 +0000 |
commit | 9e9a76fd38ec8e0aa6f650e175e1d770d4dc931f (patch) | |
tree | 36379b512c9608d38ab2d01132b7ad6d13c308cd /stream | |
parent | 0616f1a02a8130db6e72ac9b3fcfcb5f6623d1c8 (diff) |
Fix warning: too many arguments for format
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24039 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/stream_radio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c index a232f03c0f..070dd19d4b 100644 --- a/stream/stream_radio.c +++ b/stream/stream_radio.c @@ -846,7 +846,7 @@ static int init_audio(radio_priv_t *priv) #endif if(audio_in_init(&priv->audio_in, is_oss?AUDIO_IN_OSS:AUDIO_IN_ALSA)<0){ - mp_msg(MSGT_RADIO, MSGL_ERR, MSGTR_RADIO_AudioInInitFailed,strerror(errno)); + mp_msg(MSGT_RADIO, MSGL_ERR, MSGTR_RADIO_AudioInInitFailed); } audio_in_set_device(&priv->audio_in, priv->radio_param->adevice); |