summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte2011-07-16 15:42:46 +0200
committerHarald Welte2011-07-16 15:42:46 +0200
commite0aa5bb9f758efdac73d89e270c86ed73b6dbe9a (patch)
tree5bd195eed8a579d7e8b20b108d5284eff7bdf626 /include
parentgsm 04.80: ussd_request.text can contain 0xff, needs to be unsigned (diff)
downloadlibosmocore-e0aa5bb9f758efdac73d89e270c86ed73b6dbe9a.tar.gz
libosmocore-e0aa5bb9f758efdac73d89e270c86ed73b6dbe9a.tar.xz
libosmocore-e0aa5bb9f758efdac73d89e270c86ed73b6dbe9a.zip
gsm 04.80: fix typo (256, not 265!)
This was introduced by me in commit 79599ba0eb7a9aeaeb9dfbbf4881f0633724a471 Thanks to Alexander Huemer for detecting it
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/gsm/tlv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/gsm/tlv.h b/include/osmocom/gsm/tlv.h
index 1e59cca..f659411 100644
--- a/include/osmocom/gsm/tlv.h
+++ b/include/osmocom/gsm/tlv.h
@@ -236,11 +236,11 @@ struct tlv_def {
};
struct tlv_definition {
- struct tlv_def def[265];
+ struct tlv_def def[256];
};
struct tlv_parsed {
- struct tlv_p_entry lv[265];
+ struct tlv_p_entry lv[256];
};
extern struct tlv_definition tvlv_att_def;