summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-11-06 21:55:40 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-11-06 21:55:40 +0100
commit6d1f1163381707a7f4172e2a19e5646b38fb12c9 (patch)
tree2ef88564f01e83cafbbb9ebfb2c4bbf121b8cdfa /src/host/layer23/include
parent02d469ad67459c8d28c808a19802613a5666364c (diff)
misc: u_intX -> uintX in the host directory
Use C99 stdint.h for the inttypes.
Diffstat (limited to 'src/host/layer23/include')
-rw-r--r--src/host/layer23/include/osmocom/bb/mobile/mncc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/host/layer23/include/osmocom/bb/mobile/mncc.h b/src/host/layer23/include/osmocom/bb/mobile/mncc.h
index 1d7f7794..7bf4df6a 100644
--- a/src/host/layer23/include/osmocom/bb/mobile/mncc.h
+++ b/src/host/layer23/include/osmocom/bb/mobile/mncc.h
@@ -130,11 +130,11 @@ struct gsm_call {
struct gsm_mncc {
/* context based information */
- u_int32_t msg_type;
- u_int32_t callref;
+ uint32_t msg_type;
+ uint32_t callref;
/* which fields are present */
- u_int32_t fields;
+ uint32_t fields;
/* data derived informations (MNCC_F_ based) */
struct gsm_mncc_bearer_cap bearer_cap;
@@ -165,8 +165,8 @@ struct gsm_mncc {
};
struct gsm_data_frame {
- u_int32_t msg_type;
- u_int32_t callref;
+ uint32_t msg_type;
+ uint32_t callref;
unsigned char data[0];
};