diff options
author | Ben Hilburn <ben.hilburn@ettus.com> | 2014-05-21 11:56:07 -0700 |
---|---|---|
committer | Ben Hilburn <ben.hilburn@ettus.com> | 2014-05-21 11:56:07 -0700 |
commit | f2fbcfa30edd32e134a23a1e18079f3e354709f1 (patch) | |
tree | 138a997cd1ebc44eb95f04a2f1716487dad52b98 /host/lib/usrp/x300/x300_fw_ctrl.cpp | |
parent | 054a752bb25f9e17c1269b28ad2a95865c0d63a2 (diff) | |
download | uhd-f2fbcfa30edd32e134a23a1e18079f3e354709f1.tar.gz uhd-f2fbcfa30edd32e134a23a1e18079f3e354709f1.tar.bz2 uhd-f2fbcfa30edd32e134a23a1e18079f3e354709f1.zip |
Lots of bit-specific type work to fix compilation on older OSes.
Diffstat (limited to 'host/lib/usrp/x300/x300_fw_ctrl.cpp')
-rw-r--r-- | host/lib/usrp/x300/x300_fw_ctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/x300/x300_fw_ctrl.cpp b/host/lib/usrp/x300/x300_fw_ctrl.cpp index 67c314d3f..804d23f51 100644 --- a/host/lib/usrp/x300/x300_fw_ctrl.cpp +++ b/host/lib/usrp/x300/x300_fw_ctrl.cpp @@ -285,8 +285,8 @@ protected: private: niriok_proxy& _drv_proxy; - static const uint32_t READ_TIMEOUT_IN_MS = 10; - static const uint32_t INIT_TIMEOUT_IN_MS = 5000; + static const boost::uint32_t READ_TIMEOUT_IN_MS = 10; + static const boost::uint32_t INIT_TIMEOUT_IN_MS = 5000; }; wb_iface::sptr x300_make_ctrl_iface_enet(uhd::transport::udp_simple::sptr udp) |