Commit 507c3460 authored by David Kim's avatar David Kim

bug fix: removed ';' at the end of 'if' condition.

parent a8517323
......@@ -4615,7 +4615,7 @@ void ue_measurement_report_triggering(protocol_ctxt_t *const ctxt_pP, const uint
is_state_connected = true;
if (ue->Info[0].T304_active == 0)
is_t304_inactive = true;
if (ue->HandoverInfoUe.measFlag == 1);
if (ue->HandoverInfoUe.measFlag == 1)
have_meas_flag = true;
if (is_state_connected && is_t304_inactive && have_meas_flag) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment