aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-09-07 12:07:10 +0200
committerHarald Welte <laforge@gnumonks.org>2012-09-07 12:07:10 +0200
commit1f87d75b7af8737e5ad0ec6b75ac53b3bd608a1c (patch)
tree43f78853bcf3f3ff0ea875e3a77cf0a7fa48ae0d /include
parent5b3bffb74c4adfb16d3945b8094487b8990854ca (diff)
USSD: text is 'char' not uint8_t
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/gsm/gsm0480.h2
1 files changed, 1 insertions, 1 deletions
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;
};