aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h223.c
diff options
context:
space:
mode:
authorsfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-22 17:30:06 +0000
committersfisher <sfisher@f5534014-38df-0310-8fa8-9805f1628bb7>2011-04-22 17:30:06 +0000
commitb8adfa430dc01ae3ba2167259fb05c25a181183e (patch)
tree4004e6199f41fa35fd5f1ff1fc2113a1a938977b /epan/dissectors/packet-h223.c
parent6406b9d5441b6116df5f76291874a0659aa3ca19 (diff)
Use _U_ for unused function parameters instead of assigning the
variable to itself. Found by clang 3.0 (trunk) compiler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@36819 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-h223.c')
-rw-r--r--epan/dissectors/packet-h223.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/epan/dissectors/packet-h223.c b/epan/dissectors/packet-h223.c
index a70bb12742..ffca43ef13 100644
--- a/epan/dissectors/packet-h223.c
+++ b/epan/dissectors/packet-h223.c
@@ -1097,13 +1097,10 @@ dissect_mux_pdu( tvbuff_t *tvb, packet_info *pinfo, guint32 pkt_offset,
/* attempt to parse the header of a mux pdu */
static gboolean
-attempt_mux_level0_header_parse(guint32 nbytes, guint32 hdr, guint32 *minlen)
+attempt_mux_level0_header_parse(guint32 nbytes _U_, guint32 hdr _U_, guint32 *minlen _U_)
{
/* level 0 isn't byte-aligned, so is a complete pain to implement */
DISSECTOR_ASSERT_NOT_REACHED();
- nbytes = nbytes;
- hdr=hdr;
- minlen=minlen;
return FALSE;
}