aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorDerek Kozel <derek.kozel@ettus.com>2017-04-04 14:42:46 -0700
committerMartin Braun <martin.braun@ettus.com>2017-04-04 14:44:29 -0700
commit81db2fcacf3f17e599c05c3066a127c686798a68 (patch)
tree3e3b45b7ff6cc5d6e90cb21aa7a7dea1a46b72a6 /host
parentcecf54772ee040fb4cd15cef8d177b5e30550996 (diff)
downloaduhd-81db2fcacf3f17e599c05c3066a127c686798a68.tar.gz
uhd-81db2fcacf3f17e599c05c3066a127c686798a68.tar.bz2
uhd-81db2fcacf3f17e599c05c3066a127c686798a68.zip
uhd: Fix minor typo
Diffstat (limited to 'host')
-rw-r--r--host/lib/usrp/x300/x300_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_impl.cpp b/host/lib/usrp/x300/x300_impl.cpp
index 2d6ce822e..c9a73db16 100644
--- a/host/lib/usrp/x300/x300_impl.cpp
+++ b/host/lib/usrp/x300/x300_impl.cpp
@@ -1644,7 +1644,7 @@ x300_impl::frame_size_t x300_impl::determine_max_frame_size(const std::string &a
// of the recv and send frame sizes.
frame_size.recv_frame_size = std::min(min_recv_frame_size, min_send_frame_size);
frame_size.send_frame_size = std::min(min_recv_frame_size, min_send_frame_size);
- UHD_LOGGER_INFO("X300") << "Maximim frame size: " << frame_size.send_frame_size << " bytes.";
+ UHD_LOGGER_INFO("X300") << "Maximum frame size: " << frame_size.send_frame_size << " bytes.";
return frame_size;
}