aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/super_recv_packet_handler.hpp
diff options
context:
space:
mode:
authorMarcus Müller <marcus.mueller@ettus.com>2015-12-31 14:47:06 +0100
committerMartin Braun <martin.braun@ettus.com>2015-12-31 11:44:45 -0800
commitf45b4eb386a4c4cf5e7a463936fb4591d1bf8854 (patch)
tree5300bddb5f604ee76a25adf56f86dfbc9a260cbb /host/lib/transport/super_recv_packet_handler.hpp
parentf4656fcb7b4a60cb603ce90abac8266a7e47ec7f (diff)
downloaduhd-f45b4eb386a4c4cf5e7a463936fb4591d1bf8854.tar.gz
uhd-f45b4eb386a4c4cf5e7a463936fb4591d1bf8854.tar.bz2
uhd-f45b4eb386a4c4cf5e7a463936fb4591d1bf8854.zip
fixed a orthography typo; funnier if you're German.
Diffstat (limited to 'host/lib/transport/super_recv_packet_handler.hpp')
-rw-r--r--host/lib/transport/super_recv_packet_handler.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/host/lib/transport/super_recv_packet_handler.hpp b/host/lib/transport/super_recv_packet_handler.hpp
index 3fcf9c1e6..4a7ad8d26 100644
--- a/host/lib/transport/super_recv_packet_handler.hpp
+++ b/host/lib/transport/super_recv_packet_handler.hpp
@@ -127,7 +127,7 @@ public:
* \param threshold number of packets per channel
*/
void set_alignment_failure_threshold(const size_t threshold){
- _alignment_faulure_threshold = threshold*this->size();
+ _alignment_failure_threshold = threshold*this->size();
}
//! Set the rate of ticks per second
@@ -275,7 +275,7 @@ private:
size_t _header_offset_words32;
double _tick_rate, _samp_rate;
bool _queue_error_for_next_call;
- size_t _alignment_faulure_threshold;
+ size_t _alignment_failure_threshold;
rx_metadata_t _queue_metadata;
struct xport_chan_props_type{
xport_chan_props_type(void):
@@ -593,7 +593,7 @@ private:
}
//too many iterations: detect alignment failure
- if (iterations++ > _alignment_faulure_threshold){
+ if (iterations++ > _alignment_failure_threshold){
UHD_MSG(error) << boost::format(
"The receive packet handler failed to time-align packets.\n"
"%u received packets were processed by the handler.\n"