aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-06 18:51:08 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2010-11-06 18:51:08 +0000
commit3adfed802236f1690cff6e6be5a53b6241dc1d74 (patch)
treedce0e4edaffa754625645c74262941ae0a52ef6a
parentd7c6139d760c9e4969dfb235308c54ee11bf1363 (diff)
Try to fix by making both use guint8, rather than guint16.
svn path=/trunk/; revision=34797
-rw-r--r--epan/dissectors/packet-pdcp-lte.h2
-rw-r--r--epan/dissectors/packet-rlc-lte.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-pdcp-lte.h b/epan/dissectors/packet-pdcp-lte.h
index a6ce31cec7..47ccbd1ede 100644
--- a/epan/dissectors/packet-pdcp-lte.h
+++ b/epan/dissectors/packet-pdcp-lte.h
@@ -70,7 +70,7 @@ typedef struct pdcp_lte_info
guint8 direction;
guint16 ueid;
LogicalChannelType channelType;
- guint16 channelId;
+ guint8 channelId;
BCCHTransportType BCCHTransport;
/* Details of PDCP header */
diff --git a/epan/dissectors/packet-rlc-lte.h b/epan/dissectors/packet-rlc-lte.h
index 8e8fe4a6a0..2e5c97dbd5 100644
--- a/epan/dissectors/packet-rlc-lte.h
+++ b/epan/dissectors/packet-rlc-lte.h
@@ -52,8 +52,8 @@ typedef struct rlc_lte_info
guint8 direction;
guint8 priority;
guint16 ueid;
- guint16 channelType;
- guint16 channelId;
+ guint8 channelType;
+ guint8 channelId;
guint16 pduLength;
guint8 UMSequenceNumberLength;
} rlc_lte_info;