gprs_ns2_sns: add missing S() to allow GPRS_SNS_EV_NO_NSVC happen

The event GPRS_SNS_EV_NO_NSVC was never dispatched because the
S() was missing to convert it into a bitmask.

Change-Id: I4af01293ff0ba8629e1426b1ba92f72f0520c7f0
This commit is contained in:
Alexander Couzens 2020-12-07 04:13:53 +01:00 committed by laforge
parent 42ad549152
commit db1c3fb114
1 changed files with 1 additions and 1 deletions

View File

@ -1205,7 +1205,7 @@ static struct osmo_fsm gprs_ns2_sns_bss_fsm = {
.name = "GPRS-NS2-SNS-BSS",
.states = ns2_sns_bss_states,
.num_states = ARRAY_SIZE(ns2_sns_bss_states),
.allstate_event_mask = GPRS_SNS_EV_NO_NSVC,
.allstate_event_mask = S(GPRS_SNS_EV_NO_NSVC),
.allstate_action = ns2_sns_st_all_action,
.cleanup = NULL,
.timer_cb = ns2_sns_fsm_bss_timer_cb,