From 0e89fa9f0d155387b338f9d99f81909f68a1df7f Mon Sep 17 00:00:00 2001 From: Andre Puschmann Date: Fri, 29 Nov 2019 13:29:35 +0100 Subject: [PATCH] fixing two more issues reported by lgtm in asn1 libs --- lib/include/srslte/asn1/asn1_utils.h | 2 +- lib/src/asn1/rrc_asn1_utils.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/include/srslte/asn1/asn1_utils.h b/lib/include/srslte/asn1/asn1_utils.h index 835e63fb0..c2a95d655 100644 --- a/lib/include/srslte/asn1/asn1_utils.h +++ b/lib/include/srslte/asn1/asn1_utils.h @@ -581,7 +581,7 @@ public: { if (s.size() != N) { srsasn_log_print( - LOG_LEVEL_ERROR, "The provided string size=%d does not match the bit string size=%d\n", s.size(), N); + LOG_LEVEL_ERROR, "The provided string size=%zd does not match the bit string size=%d\n", s.size(), N); } memset(&octets_[0], 0, nof_octets()); for (uint32_t i = 0; i < N; ++i) diff --git a/lib/src/asn1/rrc_asn1_utils.cc b/lib/src/asn1/rrc_asn1_utils.cc index 919a31243..8d74b1724 100644 --- a/lib/src/asn1/rrc_asn1_utils.cc +++ b/lib/src/asn1/rrc_asn1_utils.cc @@ -151,6 +151,7 @@ srslte::rlc_config_t make_rlc_config_t(const asn1::rrc::srb_to_add_mod_s& asn1_t } else { asn1::rrc::rrc_log_print( asn1::LOG_LEVEL_ERROR, "SRB %d does not support default initialization type\n", asn1_type.srb_id); + return rlc_config_t(); } }