summaryrefslogtreecommitdiff
path: root/plugins/ethercat/packet-ethercat-frame.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-01-07 20:56:24 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-01-07 20:56:24 +0000
commit22afd80efc4501e7b5ad292c48cbea38558cc51b (patch)
tree5c2e6b9a0da2f5c8d3668319b21c08e053671783 /plugins/ethercat/packet-ethercat-frame.h
parente14c70310662051c8f266136a4f08c568321f8ca (diff)
downloadwireshark-22afd80efc4501e7b5ad292c48cbea38558cc51b.tar.gz
As noted by David Halik in bug 2172:
Removed an unnamed union member in ethercat. svn path=/trunk/; revision=24024
Diffstat (limited to 'plugins/ethercat/packet-ethercat-frame.h')
-rw-r--r--plugins/ethercat/packet-ethercat-frame.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ethercat/packet-ethercat-frame.h b/plugins/ethercat/packet-ethercat-frame.h
index 1e4346e745..19449a1229 100644
--- a/plugins/ethercat/packet-ethercat-frame.h
+++ b/plugins/ethercat/packet-ethercat-frame.h
@@ -33,7 +33,7 @@ typedef union _EtherCATFrameParser
guint16 length : 11;
guint16 reserved : 1;
guint16 protocol : 4;
- };
+ } v;
guint16 hdr;
} EtherCATFrameParserHDR;
typedef EtherCATFrameParserHDR *PEtherCATFrameParserHDR;