diff options
author | Josh Blum <josh@joshknows.com> | 2010-05-18 18:03:27 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-05-18 18:03:27 -0700 |
commit | bea1c582491d71bf90e240be345a32ba77028460 (patch) | |
tree | c3e3ea480c5a4da7c4b9b55e241e62be7eda7928 /host/examples | |
parent | 21e9cf4bece884ced5b7294e012be971e941c511 (diff) | |
download | uhd-bea1c582491d71bf90e240be345a32ba77028460.tar.gz uhd-bea1c582491d71bf90e240be345a32ba77028460.tar.bz2 uhd-bea1c582491d71bf90e240be345a32ba77028460.zip |
tweaks to remove warning is msvc
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/tx_timed_samples.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/tx_timed_samples.cpp b/host/examples/tx_timed_samples.cpp index 6dee69cd5..e9e0c785e 100644 --- a/host/examples/tx_timed_samples.cpp +++ b/host/examples/tx_timed_samples.cpp @@ -41,7 +41,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ ("nsamps", po::value<size_t>(&total_num_samps)->default_value(1000), "total number of samples to transmit") ("txrate", po::value<double>(&tx_rate)->default_value(100e6/16), "rate of outgoing samples") ("freq", po::value<double>(&freq)->default_value(0), "rf center frequency in Hz") - ("ampl", po::value<float>(&l)->default_value(0.3), "amplitude of each sample") + ("ampl", po::value<float>(&l)->default_value(float(0.3)), "amplitude of each sample") ; po::variables_map vm; po::store(po::parse_command_line(argc, argv, desc), vm); |