aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x11.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-05-27 13:23:54 +0000
committerBill Meier <wmeier@newsguy.com>2011-05-27 13:23:54 +0000
commit8ad97b46cabe4988d70f39deec81e9dd46f993f4 (patch)
treea40d5af8175012129a11fda4dcaa136a8c3090f5 /epan/dissectors/packet-x11.c
parent51d8ad3a45e7e9bbacc3d9409c4c13cc98e3b9f3 (diff)
Fix a gcc 4.6 error: "variable might be clobbered by 'longjmp' or 'vfork' [-Werror=clobbered]"
svn path=/trunk/; revision=37438
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;