diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-04-30 12:36:58 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-04-30 12:36:58 -0700 |
commit | 15a61a77f499363d64d92e5bb79b0867f66a8f1f (patch) | |
tree | c9defd77834427cae3055f60aacb9ca866e24ced /host | |
parent | b108a919b286431d5d44f343bc9f2fac4bdb58d7 (diff) | |
download | uhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.tar.gz uhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.tar.bz2 uhd-15a61a77f499363d64d92e5bb79b0867f66a8f1f.zip |
b200: Fixed compiler warning
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 4 |
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; |