aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-01-17 21:04:54 +0100
committerHarald Welte <laforge@gnumonks.org>2016-01-17 21:10:09 +0100
commit3d431bb4eb2eec62174719daab6ec9a178299fc9 (patch)
treec7edafd49e8c939382b23b1c871f736ff574811a /include
parent5e8d8a1e75959141d643c84cf061032f9469be0a (diff)
Fix T200 default values
t200_ms is an unsigned int [7] array, while the oml_default_t200_ms was an uint8_t[7] array, which we memcpy() to the former as default initializer. Fix this by turning oml_default_t200_ms into unsigned int, too.
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 6b6735cf..9f494447 100644
--- a/include/osmo-bts/oml.h
+++ b/include/osmo-bts/oml.h
@@ -40,6 +40,6 @@ int oml_mo_fom_ack_nack(struct gsm_abis_mo *mo, uint8_t orig_msg_type,
/* Configure LAPDm T200 timers for this lchan according to OML */
int oml_set_lchan_t200(struct gsm_lchan *lchan);
-extern const uint8_t oml_default_t200_ms[7];
+extern const unsigned int oml_default_t200_ms[7];
#endif // _OML_H */