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

Change-Id: Ifd7e85cd69b5e7e473000abc1ef7a56748aafc0e
diff --git a/tests/fsm/fsm_test.c b/tests/fsm/fsm_test.c
index edbba9e..7a64421 100644
--- a/tests/fsm/fsm_test.c
+++ b/tests/fsm/fsm_test.c
@@ -53,7 +53,7 @@
 	}
 }
 
-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);