diff options
author | Brent Stapleton <brent.stapleton@ettus.com> | 2019-12-23 08:25:44 -0800 |
---|---|---|
committer | Brent Stapleton <brent.stapleton@ettus.com> | 2019-12-30 17:51:55 -0800 |
commit | cc49dc959a00bf7b6652a2b2c6d67497c942e30c (patch) | |
tree | 0eb85094fb6ccca2dc1ca994c7aa67a651ba2778 /host | |
parent | 844958fc717d401b5907fa5335eab477ea11776c (diff) | |
download | uhd-cc49dc959a00bf7b6652a2b2c6d67497c942e30c.tar.gz uhd-cc49dc959a00bf7b6652a2b2c6d67497c942e30c.tar.bz2 uhd-cc49dc959a00bf7b6652a2b2c6d67497c942e30c.zip |
tests: fixup compiler warning
Fixes cb40069b ("tests: Port polling-mode dpdk_test to new DPDK...")
Diffstat (limited to 'host')
-rw-r--r-- | host/tests/common/mock_transport.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/common/mock_transport.hpp b/host/tests/common/mock_transport.hpp index 6ca48ee5f..33d5510a9 100644 --- a/host/tests/common/mock_transport.hpp +++ b/host/tests/common/mock_transport.hpp @@ -156,7 +156,7 @@ public: _seqno++; } - bool can_send(size_t bytes) + bool can_send(size_t /* bytes */) { return _seqno < _ackno + _credits; }; |