Mercurial > mplayer.hg
changeset 22928:09f2039f1113
Fix typo in r22772 which causes compilation error under *BSD.
Slightly modified patch from Bernd Ernesti.
author | voroshil |
---|---|
date | Sun, 08 Apr 2007 15:30:01 +0000 |
parents | b2c11182ea15 |
children | a60dbae6ee1d |
files | stream/stream_radio.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/stream_radio.c Sun Apr 08 10:09:56 2007 +0000 +++ b/stream/stream_radio.c Sun Apr 08 15:30:01 2007 +0000 @@ -653,14 +653,14 @@ } /* 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 const radio_driver_t* radio_drivers[]={ #ifdef RADIO_BSDBT848_HDR - &radio_driver_bstbt848, + &radio_driver_bsdbt848, #endif #ifdef HAVE_RADIO_V4L2 &radio_driver_v4l2,