aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x11.c
diff options
context:
space:
mode:
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-27 13:23:54 +0000
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>2011-05-27 13:23:54 +0000
commit53fa19f278b3bd9a721a928af595e73b41f4371e (patch)
treea40d5af8175012129a11fda4dcaa136a8c3090f5 /epan/dissectors/packet-x11.c
parentdeb00a0285c57d60b37ea3b35ab4a87659fac1a2 (diff)
Fix a gcc 4.6 error: "variable might be clobbered by 'longjmp' or 'vfork' [-Werror=clobbered]"
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37438 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-x11.c')
-rw-r--r--epan/dissectors/packet-x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x11.c b/epan/dissectors/packet-x11.c
index f700b8a77c..096bccf83c 100644
--- a/epan/dissectors/packet-x11.c
+++ b/epan/dissectors/packet-x11.c
@@ -4653,7 +4653,7 @@ dissect_x11_replies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
tvbuff_t * volatile next_tvb;
conversation_t *conversation;
x11_conv_data_t *volatile state;
- gboolean little_endian;
+ volatile gboolean little_endian;
int length_remaining;
const char *volatile sep = NULL;