aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/osmo-bts/oml.h2
-rw-r--r--src/common/oml.c2
2 files changed, 2 insertions, 2 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 */
diff --git a/src/common/oml.c b/src/common/oml.c
index ef1bea3d..35973d7b 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -393,7 +393,7 @@ static const uint8_t abis_nm_t200_mult[] = {
/* the below defaults correpsond to the libocmocore default of 1s for
* DCCH and 2s for ACCH. The BSC should overried this via OML anyway. */
-const uint8_t oml_default_t200_ms[7] = {
+const unsigned int oml_default_t200_ms[7] = {
[T200_SDCCH] = 1000/5,
[T200_FACCH_F] = 1000/5,
[T200_FACCH_H] = 1000/5,