summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-08 15:30:01 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-04-08 15:30:01 +0000
commit77a15dd6d3ec6307e4bd1976b350be54d2cf19ff (patch)
tree5bac80c15ab4aa5d4a070f813874d896c831d0ec /stream
parentee3adc95aa48553a5d104d69a470226adcabe969 (diff)
downloadmpv-77a15dd6d3ec6307e4bd1976b350be54d2cf19ff.tar.bz2
mpv-77a15dd6d3ec6307e4bd1976b350be54d2cf19ff.tar.xz
Fix typo in r22772 which causes compilation error under *BSD.
Slightly modified patch from Bernd Ernesti. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22946 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/stream_radio.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/stream/stream_radio.c b/stream/stream_radio.c
index 6fb3465292..eb87c117a3 100644
--- a/stream/stream_radio.c
+++ b/stream/stream_radio.c
@@ -653,14 +653,14 @@ static int get_volume_bsdbt848(radio_priv_t* priv,int* volume){
}
/* bsdbt848 driver info structure */
-static const radio_driver_t radio_driver_bstbt848={
+static const radio_driver_t radio_driver_bsdbt848={
"bsdbt848",
- MSGTR_RADIO_DriverBSTBT848,
- init_frac_bstbt848,
- set_volume_bstbt848,
- get_volume_bstbt848,
- set_frequency_bstbt848,
- get_frequency_bstbt848
+ MSGTR_RADIO_DriverBSDBT848,
+ init_frac_bsdbt848,
+ set_volume_bsdbt848,
+ get_volume_bsdbt848,
+ set_frequency_bsdbt848,
+ get_frequency_bsdbt848
};
#endif //RADIO_BSDBT848_HDR
@@ -1088,7 +1088,7 @@ static int fill_buffer_s(struct stream_st *s, char* buffer, int max_len){
*/
static const radio_driver_t* radio_drivers[]={
#ifdef RADIO_BSDBT848_HDR
- &radio_driver_bstbt848,
+ &radio_driver_bsdbt848,
#endif
#ifdef HAVE_RADIO_V4L2
&radio_driver_v4l2,