aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-10 12:02:45 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-10 12:02:45 +0100
commit1cce69364dbbc5fd8ed6765063c84f415da7ce02 (patch)
treed64127f9cd4a7493ca28adab745c125f2586093a /include
parent8332e29c9f3f97cbe22f83673cac4e68c57959f1 (diff)
abis: Fix compiler warning and remove const from syntax
libosmo-abis doesn't make it easy to have these parameters as const.. just declare it non-const in the api. We pass a static string but we know it will not be modified.
Diffstat (limited to 'include')
-rw-r--r--include/osmo-bts/abis.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmo-bts/abis.h b/include/osmo-bts/abis.h
index 8c055d71..62407ece 100644
--- a/include/osmo-bts/abis.h
+++ b/include/osmo-bts/abis.h
@@ -17,8 +17,8 @@ enum {
};
void abis_init(struct gsm_bts *bts);
-struct e1inp_line *abis_open(struct gsm_bts *bts, const char *dst_host,
- const char *model_name);
+struct e1inp_line *abis_open(struct gsm_bts *bts, char *dst_host,
+ char *model_name);
int abis_oml_sendmsg(struct msgb *msg);