diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2011-11-06 21:55:40 +0100 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2011-11-06 21:55:40 +0100 |
commit | 6d1f1163381707a7f4172e2a19e5646b38fb12c9 (patch) | |
tree | 2ef88564f01e83cafbbb9ebfb2c4bbf121b8cdfa /src/host/layer23/src/mobile/gsm48_cc.c | |
parent | 02d469ad67459c8d28c808a19802613a5666364c (diff) |
misc: u_intX -> uintX in the host directory
Use C99 stdint.h for the inttypes.
Diffstat (limited to 'src/host/layer23/src/mobile/gsm48_cc.c')
-rw-r--r-- | src/host/layer23/src/mobile/gsm48_cc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/host/layer23/src/mobile/gsm48_cc.c b/src/host/layer23/src/mobile/gsm48_cc.c index 2e978197..55e14d57 100644 --- a/src/host/layer23/src/mobile/gsm48_cc.c +++ b/src/host/layer23/src/mobile/gsm48_cc.c @@ -43,7 +43,7 @@ extern void *l23_ctx; static int gsm48_cc_tx_release(struct gsm_trans *trans, void *arg); static int gsm48_rel_null_free(struct gsm_trans *trans); int mncc_release_ind(struct osmocom_ms *ms, struct gsm_trans *trans, - u_int32_t callref, int location, int value); + uint32_t callref, int location, int value); static int gsm48_cc_tx_disconnect(struct gsm_trans *trans, void *arg); static int gsm48_cc_tx_connect_ack(struct gsm_trans *trans, void *arg); @@ -416,7 +416,7 @@ void mncc_set_cause(struct gsm_mncc *data, int loc, int val) /* send release indication to upper layer */ int mncc_release_ind(struct osmocom_ms *ms, struct gsm_trans *trans, - u_int32_t callref, int location, int value) + uint32_t callref, int location, int value) { struct gsm_mncc rel; @@ -1846,7 +1846,7 @@ static int gsm48_cc_rx_release_compl(struct gsm_trans *trans, struct msgb *msg) /* state trasitions for MNCC messages (upper layer) */ static struct downstate { - u_int32_t states; + uint32_t states; int type; int (*rout) (struct gsm_trans *trans, void *arg); } downstatelist[] = { @@ -2004,7 +2004,7 @@ int mncc_tx_to_cc(void *inst, int msg_type, void *arg) /* state trasitions for call control messages (lower layer) */ static struct datastate { - u_int32_t states; + uint32_t states; int type; int (*rout) (struct gsm_trans *trans, struct msgb *msg); } datastatelist[] = { |