summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-17 13:42:46 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-17 13:42:46 +0000
commitc4c48f002a5795cbef8c19daecb083d209fdac13 (patch)
tree9a1ae092dec506981446a4d9bf4ebd75655a61e5 /stream
parentc6d8a2e98952f4ae35c06cacd3d7544c849a3742 (diff)
downloadmpv-c4c48f002a5795cbef8c19daecb083d209fdac13.tar.bz2
mpv-c4c48f002a5795cbef8c19daecb083d209fdac13.tar.xz
Change verbosity level from MSGL_V to MSGL_INFO for "Current frequency is"
message in stream_radio. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20983 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_radio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c
index 480674fca9..ad8ad5a1fe 100644
--- a/stream/stream_radio.c
+++ b/stream/stream_radio.c
@@ -820,7 +820,7 @@ int radio_set_freq(struct stream_st *stream, float frequency){
if (get_frequency(priv,&frequency)!=STREAM_OK){
return 0;
}
- mp_msg(MSGT_RADIO, MSGL_V, MSGTR_RADIO_CurrentFreq,frequency);
+ mp_msg(MSGT_RADIO, MSGL_INFO, MSGTR_RADIO_CurrentFreq,frequency);
return 1;
}