aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2015-04-30 12:36:58 -0700
committerMartin Braun <martin.braun@ettus.com>2015-04-30 12:36:58 -0700
commit15a61a77f499363d64d92e5bb79b0867f66a8f1f (patch)
treec9defd77834427cae3055f60aacb9ca866e24ced
parentb108a919b286431d5d44f343bc9f2fac4bdb58d7 (diff)
downloaduhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.tar.gz
uhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.tar.bz2
uhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.zip
b200: Fixed compiler warning
-rw-r--r--host/lib/usrp/b200/b200_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp
index d66920bd9..724f5f8b9 100644
--- a/host/lib/usrp/b200/b200_impl.cpp
+++ b/host/lib/usrp/b200/b200_impl.cpp
@@ -205,8 +205,8 @@ UHD_STATIC_BLOCK(register_b200_device)
* Structors
**********************************************************************/
b200_impl::b200_impl(const device_addr_t &device_addr) :
- _tick_rate(0.0), // Forces a clock initialization at startup
- _revision(0)
+ _revision(0),
+ _tick_rate(0.0) // Forces a clock initialization at startup
{
_tree = property_tree::make();
_type = device::USRP;