aboutsummaryrefslogtreecommitdiffstats
path: root/epan/emem.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-02 18:02:08 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2006-05-02 18:02:08 +0000
commitc58e8dd9058bb33bec756361e1bec941daa0db02 (patch)
treedd62b08da86918bdecb93c63aa8aa1aa79d82b26 /epan/emem.h
parent7430e34c98481b228c338827e70e6505903363a1 (diff)
Not all compilers support unnamed struct/union fields within
structs/unions (GCC supports it "for compatibility with other compilers"; presumably that's not for compatibility with the version of Sun C that rejected it - was that a PCCism?). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18072 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/emem.h')
-rw-r--r--epan/emem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/emem.h b/epan/emem.h
index 31bb367620..60593ce273 100644
--- a/epan/emem.h
+++ b/epan/emem.h
@@ -168,7 +168,7 @@ typedef struct _se_tree_node_t {
struct _se_tree_node_t *right;
union {
guint32 rb_color;
- };
+ } u;
guint32 key32;
void *data;
} se_tree_node_t;