aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2018-01-30 11:38:59 +0100
committerHarald Welte <laforge@gnumonks.org>2018-02-05 22:20:20 +0000
commit64dbc5464c7ef8f0ba2acbb1c924d4eef3e6e72e (patch)
tree9d76d7cc1941452240dea2246eab05962e17f1e7 /include
parent98f7467ac8ba53230d4ae6167aa5664a105323b3 (diff)
a_iface: correct data type for a.conn_id in gsm_subscriber_connection
conn_id is modeled as int, but should be uint32_t. - change conn_id from int to uint32_t Change-Id: Ibf14d7c9a547c4eeb873975e7dcddef223e7df46 Related: OS#2769
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/gsm_data.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/msc/gsm_data.h b/include/osmocom/msc/gsm_data.h
index 16e83f3bb..2cddd2548 100644
--- a/include/osmocom/msc/gsm_data.h
+++ b/include/osmocom/msc/gsm_data.h
@@ -212,7 +212,7 @@ struct gsm_subscriber_connection {
/* The connection identifier that is used
* to reference the SCCP connection that is
* associated with this subscriber connection */
- int conn_id;
+ uint32_t conn_id;
} a;
};