diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-12 08:48:13 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-18 08:59:49 +0100 |
commit | 26501febfef8cf705e23cf758ea69ca2d221d64a (patch) | |
tree | e396795fd87c756ee05793e428bf830db3ce0889 | |
parent | 7833999e8bfda3a1056f3ea954844cb4af2154ae (diff) | |
download | uhd-26501febfef8cf705e23cf758ea69ca2d221d64a.tar.gz uhd-26501febfef8cf705e23cf758ea69ca2d221d64a.tar.bz2 uhd-26501febfef8cf705e23cf758ea69ca2d221d64a.zip |
Remove unused vars
-rw-r--r-- | host/lib/usrp/gps_ctrl.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp index 3b440ba58..5f45e7298 100644 --- a/host/lib/usrp/gps_ctrl.cpp +++ b/host/lib/usrp/gps_ctrl.cpp @@ -61,8 +61,6 @@ class gps_ctrl_parser { if (gps_data_input.size() >= 8) { - uint8_t msg_class = gps_data_input[2]; - uint8_t msg_id = gps_data_input[3]; uint8_t len_lo = gps_data_input[4]; uint8_t len_hi = gps_data_input[5]; size_t len = len_lo | (len_hi << 8); |