Change type to try to fix win64 build breakage.

svn path=/trunk/; revision=29984
This commit is contained in:
Martin Mathieson 2009-09-18 17:10:35 +00:00
parent b6acfd804e
commit 66e8e24373
1 changed files with 2 additions and 2 deletions

View File

@ -423,7 +423,7 @@ static const value_string rlc_channel_type_vals[] = {
/* Mapping type */
typedef struct drb_mapping_t {
guint16 lcid;
guint16 drbid;
guint drbid;
rlc_channel_type_t channel_type;
} lcid_drb_mapping_t;
@ -1628,7 +1628,7 @@ static void dissect_ulsch_or_dlsch(tvbuff_t *tvb, packet_info *pinfo, proto_tree
/* Look for mapping for this LCID to drb channel set by UAT table */
rlc_channel_type_t rlc_channel_type = rlcRaw;
guint8 UM_seqnum_length = 0;
guint8 drb_id = 0;
guint drb_id = 0;
guint m;
for (m=0; m < num_lcid_drb_mappings; m++) {