Try to fix by making both use guint8, rather than guint16.

svn path=/trunk/; revision=34797
This commit is contained in:
Martin Mathieson 2010-11-06 18:51:08 +00:00
parent d7c6139d76
commit 3adfed8022
2 changed files with 3 additions and 3 deletions

View File

@ -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 */

View File

@ -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;