aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2013-06-30 15:29:26 +0200
committerHarald Welte <laforge@gnumonks.org>2013-06-30 15:29:26 +0200
commit6404a766617ba3dac02374b4e0d6cbc8b7b9770d (patch)
tree2771937f267c625667d0c6f426d11009a4dfabef /include
parent48eca2524cb960b4ea430e228fcb80be73a512f5 (diff)
make oml_mo_state_init() a void function
... so we don't get warnings about not returning anything
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/oml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmo-bts/oml.h b/include/osmo-bts/oml.h
index 01c127a5..5e9c8801 100644
--- a/include/osmo-bts/oml.h
+++ b/include/osmo-bts/oml.h
@@ -15,7 +15,7 @@ int oml_mo_statechg_ack(struct gsm_abis_mo *mo);
int oml_mo_state_chg(struct gsm_abis_mo *mo, int op_state, int avail_state);
/* First initialization of MO, does _not_ generate state changes */
-int oml_mo_state_init(struct gsm_abis_mo *mo, int op_state, int avail_state);
+void oml_mo_state_init(struct gsm_abis_mo *mo, int op_state, int avail_state);
/* Transmit STATE CHG REP even if there was no state change */
int oml_tx_state_changed(struct gsm_abis_mo *mo);