diff options
| author | Marcus Müller <marcus.mueller@ettus.com> | 2015-03-29 22:52:43 +0200 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2015-03-30 09:32:12 -0700 | 
| commit | 2df1b69dcc38effa5ba66eab86341df9a7a04733 (patch) | |
| tree | d03a0e8a67432364ff848c12ded4ce77b2949b4f | |
| parent | d0a90ff49d9456c2a758f9d49102c8028009a5e4 (diff) | |
| download | uhd-2df1b69dcc38effa5ba66eab86341df9a7a04733.tar.gz uhd-2df1b69dcc38effa5ba66eab86341df9a7a04733.tar.bz2 uhd-2df1b69dcc38effa5ba66eab86341df9a7a04733.zip  | |
db_tvrx2: fixed boost::format bug
| -rw-r--r-- | host/lib/usrp/dboard/db_tvrx2.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/dboard/db_tvrx2.cpp b/host/lib/usrp/dboard/db_tvrx2.cpp index 9300483d1..00c2fef50 100644 --- a/host/lib/usrp/dboard/db_tvrx2.cpp +++ b/host/lib/usrp/dboard/db_tvrx2.cpp @@ -1014,7 +1014,7 @@ tvrx2::tvrx2(ctor_args_t args) : rx_dboard_base(args){          _freq_scalar = (6*16.0e6)/this->get_iface()->get_clock_rate(dboard_iface::UNIT_RX);      } else if (ref_clock == 200e6)  { -        UHD_MSG(warning) << boost::format("ref_clock was 200e6, setting ref_clock divider for 100e6.") % ref_clock << std::endl; +        UHD_MSG(warning) << boost::format("ref_clock was 200e6, setting ref_clock divider for 100e6.") << std::endl;          this->get_iface()->set_clock_rate(dboard_iface::UNIT_RX, 100e6);          this->get_iface()->set_gpio_out(dboard_iface::UNIT_RX, REFCLOCK_DIV6);  | 
