aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl.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-ssl.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-ssl.c')
-rw-r--r--epan/dissectors/packet-ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index 59ad4b640e..1a7645e953 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -885,7 +885,7 @@ decrypt_ssl3_record(tvbuff_t *tvb, packet_info *pinfo, guint32 offset,
}
static void
-process_ssl_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
+process_ssl_payload(tvbuff_t *tvb, int offset, packet_info *pinfo,
proto_tree *tree, SslSession *session);
static void
@@ -1310,7 +1310,7 @@ export_pdu_packet(tvbuff_t *tvb, packet_info *pinfo, guint tag, const gchar *nam
}
static void
-process_ssl_payload(tvbuff_t *tvb, volatile int offset, packet_info *pinfo,
+process_ssl_payload(tvbuff_t *tvb, int offset, packet_info *pinfo,
proto_tree *tree, SslSession *session)
{
tvbuff_t *next_tvb;