From a559077b54c01eff5f4d04e59be292873f853925 Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Thu, 2 May 2019 12:06:21 +0200 Subject: [PATCH] fixed uninitialized member in radio.h --- lib/include/srslte/radio/radio.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/include/srslte/radio/radio.h b/lib/include/srslte/radio/radio.h index 98f1c79b2..57081d923 100644 --- a/lib/include/srslte/radio/radio.h +++ b/lib/include/srslte/radio/radio.h @@ -69,6 +69,7 @@ class radio { tx_adv_negative = false; tx_freq = 0; rx_freq = 0; + freq_offset = 0; trace_enabled = false; tti = 0; agc_enabled = false;