diff options
author | Michael West <michael.west@ettus.com> | 2013-12-06 18:19:25 -0800 |
---|---|---|
committer | Michael West <michael.west@ettus.com> | 2013-12-06 18:19:25 -0800 |
commit | e8df47ba90d5be385071ebe84645d1501995875a (patch) | |
tree | c42b85bd9eebd67522244ca4f67a6ccd470100d8 /host/lib/usrp/common | |
parent | c3aa7326095a1a8c744e269a04572de74600df8d (diff) | |
download | uhd-e8df47ba90d5be385071ebe84645d1501995875a.tar.gz uhd-e8df47ba90d5be385071ebe84645d1501995875a.tar.bz2 uhd-e8df47ba90d5be385071ebe84645d1501995875a.zip |
Fix sse2_fc32_to_sc16 converter (break on wrong line). Fix typos and compiler warnings.
Diffstat (limited to 'host/lib/usrp/common')
-rw-r--r-- | host/lib/usrp/common/fx2_ctrl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/common/fx2_ctrl.cpp b/host/lib/usrp/common/fx2_ctrl.cpp index d68bf6058..6552f1b2d 100644 --- a/host/lib/usrp/common/fx2_ctrl.cpp +++ b/host/lib/usrp/common/fx2_ctrl.cpp @@ -184,8 +184,8 @@ public: std::string record; file >> record; - if (!(record.length() > 0)) - continue; + if (!(record.length() > 0)) + continue; //check for valid record if (not checksum(&record) or not parse_record(&record, len, addr, type, data)) { |