aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-05-11 02:17:16 +0700
committerHarald Welte <laforge@gnumonks.org>2019-05-26 09:27:22 +0000
commitb683dcfe6bda723413b19c3bf5789d1a3bc3f7c7 (patch)
tree1639f6ec722cf2f9e9054837b03715792fc001c6 /include
parenta3cdab448121c76a56ef547ffdc61e3f58a93dbc (diff)
transaction: accept trans_type enum in trans_log_subsys()
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/transaction.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/osmocom/msc/transaction.h b/include/osmocom/msc/transaction.h
index ba609ea3b..69cd65229 100644
--- a/include/osmocom/msc/transaction.h
+++ b/include/osmocom/msc/transaction.h
@@ -159,11 +159,9 @@ int trans_assign_trans_id(const struct gsm_network *net, const struct vlr_subscr
struct gsm_trans *trans_has_conn(const struct msc_a *msc_a);
void trans_conn_closed(const struct msc_a *msc_a);
-static inline int trans_log_subsys(const struct gsm_trans *trans)
+static inline int trans_log_subsys(enum trans_type type)
{
- if (!trans)
- return DMSC;
- switch (trans->type) {
+ switch (type) {
case TRANS_CC:
case TRANS_SILENT_CALL:
return DCC;