From Peter Johansson:

mnc>>4; Should  be replaced with mnc = mnc>>4;

svn path=/trunk/; revision=15337
This commit is contained in:
Anders Broman 2005-08-13 10:11:23 +00:00
parent 51769bfaac
commit 1f31e083d2
1 changed files with 1 additions and 1 deletions

View File

@ -10403,7 +10403,7 @@ de_gmm_rai(tvbuff_t *tvb, proto_tree *tree, guint32 offset, guint len, gchar *ad
mnc |= (tvb_get_guint8(tvb, curr_offset+2) & 0xf0);
mnc |= (tvb_get_guint8(tvb, curr_offset+1) & 0xf0) >>4;
if ((mnc&0x000f) == 0x000f)
mnc>>4;
mnc = mnc>>4;
lac = tvb_get_guint8(tvb, curr_offset+3);
lac <<= 8;