diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-08-12 14:19:54 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-12 14:19:54 -0700 |
commit | 5a03220fb4bdd38db8558577dc116d1ca6f2f197 (patch) | |
tree | 39c0df3e71b52abe6f0eac5486e1ff501edca6be /host/lib/usrp | |
parent | fdb6a41aeadaac4196dd3a0158aed797f3f22333 (diff) | |
parent | 4f18efa3d1925e8c37890d23ec627aee684ecc96 (diff) | |
download | uhd-5a03220fb4bdd38db8558577dc116d1ca6f2f197.tar.gz uhd-5a03220fb4bdd38db8558577dc116d1ca6f2f197.tar.bz2 uhd-5a03220fb4bdd38db8558577dc116d1ca6f2f197.zip |
Merge branch 'maint'
Diffstat (limited to 'host/lib/usrp')
-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; } |