fsm_test.c: fix compiler warning: timer cb return type

Change-Id: Ifd7e85cd69b5e7e473000abc1ef7a56748aafc0e
This commit is contained in:
Neels Hofmeyr 2016-12-23 04:32:09 +01:00 committed by Harald Welte
parent 1514f34dcf
commit cba8eb9b21
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ static void test_fsm_one(struct osmo_fsm_inst *fi, uint32_t event, void *data)
}
}
static void test_fsm_tmr_cb(struct osmo_fsm_inst *fi)
static int test_fsm_tmr_cb(struct osmo_fsm_inst *fi)
{
OSMO_ASSERT(fi->T == 2342);
OSMO_ASSERT(fi->state == ST_TWO);