diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-08-12 14:08:55 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-12 14:08:55 -0700 |
commit | 19db62f4f4adef0832b62673ae257cb8fefb7d0b (patch) | |
tree | 5eb6f4838b9e7b7d7201fc3c25cb495e866e79e2 /host | |
parent | 5754a847e6ac367cfec71ffac1015d75f9f49122 (diff) | |
download | uhd-19db62f4f4adef0832b62673ae257cb8fefb7d0b.tar.gz uhd-19db62f4f4adef0832b62673ae257cb8fefb7d0b.tar.bz2 uhd-19db62f4f4adef0832b62673ae257cb8fefb7d0b.zip |
cores: Fixed typo in time_core_3000
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/cores/time_core_3000.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/cores/time_core_3000.cpp b/host/lib/usrp/cores/time_core_3000.cpp index 694edf31c..45b1750d2 100644 --- a/host/lib/usrp/cores/time_core_3000.cpp +++ b/host/lib/usrp/cores/time_core_3000.cpp @@ -73,10 +73,10 @@ struct time_core_3000_impl : time_core_3000 //useful warning for debugging actual rate const size_t ticks_elapsed = size_t(_tick_rate*approx_secs); - const size_t appox_rate = size_t(ticks_elapsed/(sleep_millis/1e3)); + const size_t approx_rate = size_t(ticks_elapsed/(sleep_millis/1e3)); if (test_fail) UHD_MSG(warning) << "Expecting clock rate: " << (_tick_rate/1e6) << " MHz\n" - << "Appoximate clock rate: " << (appox_rate/1e6) << " MHz\n" + << "Approximate clock rate: " << (approx_rate/1e6) << " MHz\n" << std::endl; } |