summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-iec104.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-iec104.c')
-rw-r--r--epan/dissectors/packet-iec104.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-iec104.c b/epan/dissectors/packet-iec104.c
index f9e17705f8..d8caf61e5a 100644
--- a/epan/dissectors/packet-iec104.c
+++ b/epan/dissectors/packet-iec104.c
@@ -713,9 +713,9 @@ static proto_item* get_InfoObjectAddress(guint32 *asdu_info_obj_addr, tvbuff_t *
static guint8 get_TypeIdLength(guint8 TypeId)
{
guint8 ret = 0;
- td_asdu_length *item;
+ const td_asdu_length *item;
- item = (td_asdu_length *)asdu_length;
+ item = asdu_length;
while (item->value)
{
if (item->value == TypeId)