diff --git a/srsepc/src/mme/s1ap_mngmt_proc.cc b/srsepc/src/mme/s1ap_mngmt_proc.cc index 79c147f9c..5a9d56ef5 100644 --- a/srsepc/src/mme/s1ap_mngmt_proc.cc +++ b/srsepc/src/mme/s1ap_mngmt_proc.cc @@ -78,7 +78,7 @@ bool s1ap_mngmt_proc::handle_s1_setup_request(const asn1::s1ap::s1_setup_request // Check for TAC match bool tac_match = false; - for (uint8_t tac : enb_ctx.tacs) { + for (uint16_t tac : enb_ctx.tacs) { if (m_s1ap->get_tac() == tac) { tac_match = true; break;