aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee802154.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-03-23 18:40:22 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-03-23 18:40:22 +0000
commitb6bf2335996094cc760cf431bbd0f25f3dad6fe8 (patch)
treebc1cecda05b1bf4acf1b154089887f5e7b7d4d04 /epan/dissectors/packet-ieee802154.h
parentd08a9666b2d0dd05af14c3aa4facd608ca0c6428 (diff)
Removed some unnamed unions, reported by Andrew Hood.
svn path=/trunk/; revision=24720
Diffstat (limited to 'epan/dissectors/packet-ieee802154.h')
-rw-r--r--epan/dissectors/packet-ieee802154.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-ieee802154.h b/epan/dissectors/packet-ieee802154.h
index 1e526595f6..e5750ce9a8 100644
--- a/epan/dissectors/packet-ieee802154.h
+++ b/epan/dissectors/packet-ieee802154.h
@@ -141,14 +141,14 @@ typedef struct {
/* Addressing Info. */
guint16 dst_pan;
union {
- guint16 dst_addr16;
- guint64 dst_addr64;
- };
+ guint16 addr16;
+ guint64 addr64;
+ } dst;
guint16 src_pan;
union {
- guint16 src_addr16;
- guint64 src_addr64;
- };
+ guint16 addr16;
+ guint64 addr64;
+ } src;
} ieee802154_packet;