Try again...

svn path=/trunk/; revision=51245
This commit is contained in:
Martin Mathieson 2013-08-10 16:53:05 +00:00
parent 8cddb7a24e
commit 11304a30ee
2 changed files with 4 additions and 4 deletions

View File

@ -1279,13 +1279,13 @@ SoundingRS-UL-ConfigDedicated/setup/duration STRINGS=TFS(&lte_rrc_duration_val)
guint value;
%(DEFAULT_BODY)s
/* This is mandatory, store value */
actx->private_data = (guint*)value;
actx->private_data = (void*)value;
#.FN_BODY RACH-ConfigCommon/preambleInfo/preamblesGroupAConfig/sizeOfRA-PreamblesGroupA VAL_PTR=&value
guint ra_value, value;
%(DEFAULT_BODY)s
/* Retrived stored value for RA (both Group A & Group B) */
ra_value = (guint)(guint32*)actx->private_data;
ra_value = (guint)(guint*)actx->private_data;
if (value > ra_value) {
/* Something is wrong if A has more RAPIDs than A & B combined! */
expert_add_info_format_text(actx->pinfo, actx->created_item, &ei_lte_rrc_too_many_group_a_rapids,

View File

@ -5556,7 +5556,7 @@ dissect_lte_rrc_T_numberOfRA_Preambles(tvbuff_t *tvb _U_, int offset _U_, asn1_c
16, &value, FALSE, 0, NULL);
/* This is mandatory, store value */
actx->private_data = (guint*)value;
actx->private_data = (void*)value;
return offset;
@ -5590,7 +5590,7 @@ dissect_lte_rrc_T_sizeOfRA_PreamblesGroupA(tvbuff_t *tvb _U_, int offset _U_, as
15, &value, FALSE, 0, NULL);
/* Retrived stored value for RA (both Group A & Group B) */
ra_value = (guint)(guint32*)actx->private_data;
ra_value = (guint)(guint*)actx->private_data;
if (value > ra_value) {
/* Something is wrong if A has more RAPIDs than A & B combined! */
expert_add_info_format_text(actx->pinfo, actx->created_item, &ei_lte_rrc_too_many_group_a_rapids,