diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-11-15 16:32:04 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-11-15 16:32:04 -0800 |
commit | 37a73f58c526cad07fce3d0ccdf3863b93fe8b80 (patch) | |
tree | 1d7ceff3e9f86e2c452281b4deeceb0896e18609 /host/examples/network_relay.cpp | |
parent | dc951f511043d828a7ebc00a2af151ce2e9af4fc (diff) | |
parent | cc6087f452c55ffb1396f1b172d3f6c501b1f5d4 (diff) | |
download | uhd-37a73f58c526cad07fce3d0ccdf3863b93fe8b80.tar.gz uhd-37a73f58c526cad07fce3d0ccdf3863b93fe8b80.tar.bz2 uhd-37a73f58c526cad07fce3d0ccdf3863b93fe8b80.zip |
Merge branch 'maint'
Diffstat (limited to 'host/examples/network_relay.cpp')
-rw-r--r-- | host/examples/network_relay.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/network_relay.cpp b/host/examples/network_relay.cpp index 0a67bbf09..b16bcaaa5 100644 --- a/host/examples/network_relay.cpp +++ b/host/examples/network_relay.cpp @@ -136,8 +136,8 @@ private: //perform sequence error detection on tx dsp data (can detect bad network cards) /* if (_port[4] == '7'){ - static boost::uint32_t next_seq; - const boost::uint32_t this_seq = ntohl(reinterpret_cast<const boost::uint32_t *>(&buff.front())[0]); + static uint32_t next_seq; + const uint32_t this_seq = ntohl(reinterpret_cast<const uint32_t *>(&buff.front())[0]); if (next_seq != this_seq and this_seq != 0) std::cout << "S" << std::flush; next_seq = this_seq + 1; } |