aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-x11.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2015-10-25 21:03:36 -0400
committerMichael Mann <mmann78@netscape.net>2015-10-26 11:28:41 +0000
commit7f591e4c07e10168f06a6a0dbb04bc66613836a7 (patch)
treea064d584a8e7b70bcdee795c96c5efe56fa937c8 /epan/dissectors/packet-x11.c
parente2203f5aed1eef900c7568b6d14f3e303e271b7c (diff)
Clean up more unnecessary use of the 'volatile' key word.
Change-Id: I3e72fddc6ed380780d7e2e1c8df87e580138188d Reviewed-on: https://code.wireshark.org/review/11271 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-x11.c')
-rw-r--r--epan/dissectors/packet-x11.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/epan/dissectors/packet-x11.c b/epan/dissectors/packet-x11.c
index da36203796..dd6afe25f9 100644
--- a/epan/dissectors/packet-x11.c
+++ b/epan/dissectors/packet-x11.c
@@ -1296,27 +1296,27 @@ static const value_string zero_is_none_vals[] = {
static void
dissect_x11_initial_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order);
static void
dissect_x11_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order);
static void
dissect_x11_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order);
static void
dissect_x11_event(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order);
static void
decode_x11_event(tvbuff_t *tvb, unsigned char eventcode, const char *sent,
- proto_tree *t, x11_conv_data_t *volatile state,
+ proto_tree *t, x11_conv_data_t *state,
guint byte_order);
static x11_conv_data_t *
@@ -3118,7 +3118,7 @@ static void dissect_x11_initial_conn(tvbuff_t *tvb, packet_info *pinfo,
}
static void dissect_x11_initial_reply(tvbuff_t *tvb, packet_info *pinfo,
- proto_tree *tree, const char _U_ *sep, x11_conv_data_t *volatile state,
+ proto_tree *tree, const char _U_ *sep, x11_conv_data_t *state,
guint byte_order)
{
int offset = 0, *offsetp = &offset, left;
@@ -4814,7 +4814,7 @@ dissect_x11_replies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
/* Set up structures we will need to add the protocol subtree and manage it */
volatile int offset, plen;
- tvbuff_t * volatile next_tvb;
+ tvbuff_t *volatile next_tvb;
conversation_t *conversation;
x11_conv_data_t *volatile state;
volatile guint byte_order;
@@ -4944,7 +4944,7 @@ dissect_x11_replies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
static void
dissect_x11_reply(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order)
{
int offset = 0, *offsetp = &offset, length, left, opcode;
@@ -5341,7 +5341,7 @@ same_screen_focus(tvbuff_t *tvb, int *offsetp, proto_tree *t)
static void
dissect_x11_event(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state,
+ const char *sep, x11_conv_data_t *state,
guint byte_order)
{
unsigned char eventcode;
@@ -5375,7 +5375,7 @@ dissect_x11_event(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
static void
decode_x11_event(tvbuff_t *tvb, unsigned char eventcode, const char *sent,
- proto_tree *t, x11_conv_data_t *volatile state,
+ proto_tree *t, x11_conv_data_t *state,
guint byte_order)
{
int offset = 0, *offsetp = &offset, left;
@@ -5689,7 +5689,7 @@ decode_x11_event(tvbuff_t *tvb, unsigned char eventcode, const char *sent,
static void
dissect_x11_error(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
- const char *volatile sep, x11_conv_data_t *volatile state _U_,
+ const char *sep, x11_conv_data_t *state _U_,
guint byte_order)
{
int offset = 0, *offsetp = &offset, left;