aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc-lte.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
committerMichael Mann <mmann78@netscape.net>2013-01-04 05:22:43 +0000
commit86d690880fb63891d223aa663ca5901c790b74af (patch)
tree47187c5da15e3c239e9bf40c79601c196ac0f114 /epan/dissectors/packet-rlc-lte.c
parentd36b4c8525161167a32eac3b1feb98f8f5d6184e (diff)
downloadwireshark-86d690880fb63891d223aa663ca5901c790b74af.tar.gz
wireshark-86d690880fb63891d223aa663ca5901c790b74af.tar.bz2
wireshark-86d690880fb63891d223aa663ca5901c790b74af.zip
replace "unsigned" datatype with "guint". Some mpeg files needed "unsigned int" instead.
bugs 7825-7827 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7825) svn path=/trunk/; revision=46928
Diffstat (limited to 'epan/dissectors/packet-rlc-lte.c')
-rw-r--r--epan/dissectors/packet-rlc-lte.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index a8f5b8cfef..f0402674c8 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -331,10 +331,10 @@ static guint16 s_lengths[MAX_RLC_SDUS];
/* Channel key */
typedef struct
{
- unsigned ueId : 16;
- unsigned channelType : 3;
- unsigned channelId : 5;
- unsigned direction : 1;
+ guint ueId : 16;
+ guint channelType : 3;
+ guint channelId : 5;
+ guint direction : 1;
} channel_hash_key;
@@ -899,11 +899,11 @@ static guint rlc_channel_hash_func(gconstpointer v)
/* Result hash */
typedef struct {
- guint32 frameNumber;
- unsigned SN : 10;
- unsigned channelType : 2;
- unsigned channelId: 5;
- unsigned direction: 1;
+ guint32 frameNumber;
+ guint32 SN : 10;
+ guint32 channelType : 2;
+ guint32 channelId: 5;
+ guint32 direction: 1;
} rlc_result_hash_key;
/* Compare 2 rlc_result_hash_key structs */