diff options
| author | Michael West <michael.west@ettus.com> | 2013-10-28 12:44:08 -0700 |
|---|---|---|
| committer | Michael West <michael.west@ettus.com> | 2013-10-28 12:44:08 -0700 |
| commit | 7cf5e2aeb9cf40b483b11b77d8242fa231998de6 (patch) | |
| tree | 30b9da755388438be63259e76d5309b9d8e3a7e9 | |
| parent | 93a8aed40060cee536a4257f52f27bafdb8a014c (diff) | |
| download | uhd-7cf5e2aeb9cf40b483b11b77d8242fa231998de6.tar.gz uhd-7cf5e2aeb9cf40b483b11b77d8242fa231998de6.tar.bz2 uhd-7cf5e2aeb9cf40b483b11b77d8242fa231998de6.zip | |
CID 1104302: Fixed uninitialized scalar.
| -rw-r--r-- | host/lib/usrp/cores/time64_core_200.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/usrp/cores/time64_core_200.cpp b/host/lib/usrp/cores/time64_core_200.cpp index 11b310362..ad5e6477c 100644 --- a/host/lib/usrp/cores/time64_core_200.cpp +++ b/host/lib/usrp/cores/time64_core_200.cpp @@ -48,6 +48,7 @@ public: ): _iface(iface), _base(base), _readback_bases(readback_bases), + _tick_rate(0.0), _mimo_delay_cycles(mimo_delay_cycles) { _sources.push_back("none"); |
