aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-01-14 12:39:24 -0800
committerGuy Harris <guy@alum.mit.edu>2018-01-14 20:40:18 +0000
commitc3190d9d70febdd1dbc15269e970f32aeda33f76 (patch)
treed81b18111497abaf4ce81103c422ff1ecc086be5
parent2cfceb2700c9af0ea0f6429f214116e9d90b43d8 (diff)
Fix build with libz not configured in.
Change-Id: I1a336eb5a19ddc9215a9598d176794cfa214863c Reviewed-on: https://code.wireshark.org/review/25314 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/dissectors/packet-websocket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-websocket.c b/epan/dissectors/packet-websocket.c
index 39e8b4022f..c1d711e7d1 100644
--- a/epan/dissectors/packet-websocket.c
+++ b/epan/dissectors/packet-websocket.c
@@ -326,7 +326,7 @@ dissect_websocket_control_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *t
}
static void
-dissect_websocket_data_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_tree *pl_tree, guint8 opcode, websocket_conv_t *websocket_conv, gboolean pmc _U_, gint raw_offset)
+dissect_websocket_data_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_tree *pl_tree, guint8 opcode, websocket_conv_t *websocket_conv, gboolean pmc _U_, gint raw_offset _U_)
{
proto_item *ti;
dissector_handle_t handle = NULL;