summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/src/common
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/src/common
parent02d469ad67459c8d28c808a19802613a5666364c (diff)
misc: u_intX -> uintX in the host directory
Use C99 stdint.h for the inttypes.
Diffstat (limited to 'src/host/layer23/src/common')
-rw-r--r--src/host/layer23/src/common/l1l2_interface.c2
-rw-r--r--src/host/layer23/src/common/sap_interface.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/host/layer23/src/common/l1l2_interface.c b/src/host/layer23/src/common/l1l2_interface.c
index abaa64f6..0d6f8c92 100644
--- a/src/host/layer23/src/common/l1l2_interface.c
+++ b/src/host/layer23/src/common/l1l2_interface.c
@@ -45,7 +45,7 @@
static int layer2_read(struct osmo_fd *fd)
{
struct msgb *msg;
- u_int16_t len;
+ uint16_t len;
int rc;
msg = msgb_alloc_headroom(GSM_L2_LENGTH+GSM_L2_HEADROOM, GSM_L2_HEADROOM, "Layer2");
diff --git a/src/host/layer23/src/common/sap_interface.c b/src/host/layer23/src/common/sap_interface.c
index fd5cdc3b..f1f4b0ec 100644
--- a/src/host/layer23/src/common/sap_interface.c
+++ b/src/host/layer23/src/common/sap_interface.c
@@ -45,7 +45,7 @@
static int sap_read(struct osmo_fd *fd)
{
struct msgb *msg;
- u_int16_t len;
+ uint16_t len;
int rc;
struct osmocom_ms *ms = (struct osmocom_ms *) fd->data;