aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2016-08-12 14:08:55 -0700
committerMartin Braun <martin.braun@ettus.com>2016-08-12 17:54:52 -0700
commitef2fa561b51b36bb12df7fb6264545a9be053cec (patch)
tree495f0e85e9c7a600f7c3fcfaaa558b845f30a97e
parentb01bdc552902318c35095e00708420752ac04031 (diff)
downloaduhd-ef2fa561b51b36bb12df7fb6264545a9be053cec.tar.gz
uhd-ef2fa561b51b36bb12df7fb6264545a9be053cec.tar.bz2
uhd-ef2fa561b51b36bb12df7fb6264545a9be053cec.zip
cores: Fixed typo in time_core_3000
-rw-r--r--host/lib/usrp/cores/time_core_3000.cpp4
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;
}