summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ansi_683.c
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-04-22 15:53:34 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-04-22 15:53:34 +0000
commite7a716144d34a538d933ddf30100ef5208c5aaf4 (patch)
treee182c9f435f054ab414ce888706a873873e3e286 /epan/dissectors/packet-ansi_683.c
parent64e31d0b0d26fb7c8e941c2b03db8117ec823a5e (diff)
downloadwireshark-e7a716144d34a538d933ddf30100ef5208c5aaf4.tar.gz
Use _U_ for unused function parameters instead of assigning a variable
to itself. Found by clang compiler. svn path=/trunk/; revision=36813
Diffstat (limited to 'epan/dissectors/packet-ansi_683.c')
-rw-r--r--epan/dissectors/packet-ansi_683.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/epan/dissectors/packet-ansi_683.c b/epan/dissectors/packet-ansi_683.c
index 6b481a15db..eba55d2178 100644
--- a/epan/dissectors/packet-ansi_683.c
+++ b/epan/dissectors/packet-ansi_683.c
@@ -1159,16 +1159,10 @@ rev_param_block_nam_cdma(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 off
* 4.5.2.4
*/
static void
-param_block_nam_imsi_t(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
+param_block_nam_imsi_t(tvbuff_t *tvb, proto_tree *tree, guint len _U_, guint32 offset)
{
guint32 value;
- /*
- * XXX avoid warning for now, may use this variable
- * for validation later
- */
- len = len;
-
value = tvb_get_guint8(tvb, offset);
other_decode_bitfield_value(bigbuf, value, 0x80, 8);