From 1f87d75b7af8737e5ad0ec6b75ac53b3bd608a1c Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 7 Sep 2012 12:07:10 +0200 Subject: USSD: text is 'char' not uint8_t --- include/osmocom/gsm/gsm0480.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osmocom/gsm/gsm0480.h b/include/osmocom/gsm/gsm0480.h index f6c37340..d6626d60 100644 --- a/include/osmocom/gsm/gsm0480.h +++ b/include/osmocom/gsm/gsm0480.h @@ -8,7 +8,7 @@ #define MAX_LEN_USSD_STRING 31 struct ussd_request { - uint8_t text[MAX_LEN_USSD_STRING + 1]; + char text[MAX_LEN_USSD_STRING + 1]; uint8_t transaction_id; uint8_t invoke_id; }; -- cgit v1.2.3