# HG changeset patch # User voroshil # Date 1176046201 0 # Node ID 09f2039f1113209ca06b8e04c6371a2d597ae7e2 # Parent b2c11182ea15552d0d992f4b732e82588fe039b6 Fix typo in r22772 which causes compilation error under *BSD. Slightly modified patch from Bernd Ernesti. diff -r b2c11182ea15 -r 09f2039f1113 stream/stream_radio.c --- 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,