aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 18:39:39 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 18:39:39 +0800
commitf957095385be8ffdd561f892106a9f6a5619e29a (patch)
tree44761a832e8976cdb284cafc1d5c976ac57d31ef /openbsc/src
parentc2c4621a5da8aef1662fc56747f6715659157c79 (diff)
sccp: u_int16_t -> uint16_t
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/sccp/sccp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/sccp/sccp.c b/openbsc/src/sccp/sccp.c
index f85257dfa..5671700ae 100644
--- a/openbsc/src/sccp/sccp.c
+++ b/openbsc/src/sccp/sccp.c
@@ -168,8 +168,8 @@ static int check_address(struct sccp_address *addr)
static int _sccp_parse_optional_data(const int offset,
struct msgb *msgb, struct sccp_optional_data *data)
{
- u_int16_t room = msgb_l2len(msgb) - offset;
- u_int16_t read = 0;
+ uint16_t room = msgb_l2len(msgb) - offset;
+ uint16_t read = 0;
while (room > read) {
uint8_t type = msgb->l2h[offset + read];