gsm 04.80: fix typo (256, not 265!)

This was introduced by me in commit
79599ba0eb

Thanks to Alexander Huemer for detecting it
This commit is contained in:
Harald Welte 2011-07-16 15:42:46 +02:00
parent 39b44bbca7
commit e0aa5bb9f7
1 changed files with 2 additions and 2 deletions

View File

@ -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;