aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore
diff options
context:
space:
mode:
authorHarald Welte <laforge@netfilter.org>2010-02-20 20:13:36 +0100
committerHarald Welte <laforge@netfilter.org>2010-02-20 20:13:36 +0100
commit75135413cbae2bf2d4e7c93f6f329f8cb1964b18 (patch)
treeaf63b4bab4a1b59eb562fc7a0b0baa64d44f0453 /libosmocore
parent9ff1eabcd389122f0b336fd4c3e68b2c58c9e201 (diff)
u_int8_t -> uint8_t
Diffstat (limited to 'libosmocore')
-rw-r--r--libosmocore/tests/sms/sms_test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libosmocore/tests/sms/sms_test.c b/libosmocore/tests/sms/sms_test.c
index 106635ffd..f5183d546 100644
--- a/libosmocore/tests/sms/sms_test.c
+++ b/libosmocore/tests/sms/sms_test.c
@@ -29,13 +29,13 @@ int main(int argc, char** argv)
{
printf("SMS testing\n");
struct msgb *msg;
- u_int8_t *sms;
- u_int8_t i;
+ uint8_t *sms;
+ uint8_t i;
/* test 7-bit coding/decoding */
const char *input = "test text";
- u_int8_t length;
- u_int8_t coded[256];
+ uint8_t length;
+ uint8_t coded[256];
char result[256];
length = gsm_7bit_encode(coded, input);