diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-12 20:05:57 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-11-03 20:37:12 -0700 |
commit | 522bc87d9f61668f3d22e067c39a98e5f33fc6c5 (patch) | |
tree | 414d3dcd86710aba39a44649872ce709d1662d8f /host/examples | |
parent | 9369259177e5517e2b0e775804224c5467e14eab (diff) | |
download | uhd-522bc87d9f61668f3d22e067c39a98e5f33fc6c5.tar.gz uhd-522bc87d9f61668f3d22e067c39a98e5f33fc6c5.tar.bz2 uhd-522bc87d9f61668f3d22e067c39a98e5f33fc6c5.zip |
uhd: fixed 8sc item32 converter on head/tail cases
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/rx_timed_samples.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/rx_timed_samples.cpp b/host/examples/rx_timed_samples.cpp index 0851593cd..143bceb03 100644 --- a/host/examples/rx_timed_samples.cpp +++ b/host/examples/rx_timed_samples.cpp @@ -98,7 +98,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ while(num_acc_samps < total_num_samps){ //receive a single packet size_t num_rx_samps = rx_stream->recv( - &buff.front(), buff.size(), md, timeout + &buff.front(), buff.size(), md, timeout, true ); //use a small timeout for subsequent packets |