From 75135413cbae2bf2d4e7c93f6f329f8cb1964b18 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 20 Feb 2010 20:13:36 +0100 Subject: u_int8_t -> uint8_t --- libosmocore/tests/sms/sms_test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libosmocore') 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); -- cgit v1.2.3