gsm 04.80: ussd_request.text can contain 0xff, needs to be unsigned

Found by Smatch
This commit is contained in:
Harald Welte 2011-07-16 13:28:59 +02:00
parent 584427cd04
commit 39b44bbca7
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
#define MAX_LEN_USSD_STRING 31
struct ussd_request {
char text[MAX_LEN_USSD_STRING + 1];
uint8_t text[MAX_LEN_USSD_STRING + 1];
uint8_t transaction_id;
uint8_t invoke_id;
};