fsm_vty: use unsigned int when left-shifting 31 bits!

fsm_vty.c:64:8: runtime error: left shift of 1 by 31 places cannot be represented in type 'int'

Change-Id: I637bce52fae947922cbb8642a0313d174c827422
This commit is contained in:
Harald Welte 2022-05-16 22:14:48 +02:00 committed by laforge
parent a2bee8bc88
commit b17cc809fb
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ void vty_out_fsm2(struct vty *vty, const char *prefix, struct osmo_fsm *fsm)
if (fsm->event_names) {
for (evt_name = fsm->event_names; evt_name->str != NULL; evt_name++) {
vty_out(vty, "%s Event %02u (0x%08x): '%s'%s", prefix, evt_name->value,
(1 << evt_name->value), evt_name->str, VTY_NEWLINE);
(1U << evt_name->value), evt_name->str, VTY_NEWLINE);
}
} else
vty_out(vty, "%s No event names are defined for this FSM! Please fix!%s", prefix, VTY_NEWLINE);