aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-06 16:32:57 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-11-06 16:32:57 +0100
commit1464a121c02786b0b7a9ea7b92f33aeacf187c55 (patch)
treebc60421c824a2e84f05c45a8f5f17b2db8118fdf
parent9d0fb1e97adbf5d241b46d374c2aa9c3af6c1e6b (diff)
ipa: Correct the prototype of these functions
They return nothing and not int.
-rw-r--r--openbsc/include/openbsc/ipaccess.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/include/openbsc/ipaccess.h b/openbsc/include/openbsc/ipaccess.h
index 4853aa123..38151c477 100644
--- a/openbsc/include/openbsc/ipaccess.h
+++ b/openbsc/include/openbsc/ipaccess.h
@@ -27,8 +27,8 @@ struct ipac_ext_lac_cmd {
uint8_t data[0];
} __attribute__((packed));
-int ipaccess_drop_oml(struct gsm_bts *bts);
-int ipaccess_drop_rsl(struct gsm_bts_trx *trx);
+void ipaccess_drop_oml(struct gsm_bts *bts);
+void ipaccess_drop_rsl(struct gsm_bts_trx *trx);
struct sdp_header_item {
struct sdp_header_entry header_entry;