aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2010-01-25 13:54:05 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2010-01-25 13:54:05 +0000
commitbb5ef1c5214e21304a25f255109961eebf218e29 (patch)
tree8bff65a6201168bdc98a510e315a779b88882322 /epan/tvbuff.c
parent9092486f58df8c57298a990c25c8e2255f28d63b (diff)
downloadwireshark-bb5ef1c5214e21304a25f255109961eebf218e29.tar.gz
wireshark-bb5ef1c5214e21304a25f255109961eebf218e29.tar.bz2
wireshark-bb5ef1c5214e21304a25f255109961eebf218e29.zip
parent is not unused in tvb_child_uncompress().
svn path=/trunk/; revision=31658
Diffstat (limited to 'epan/tvbuff.c')
-rw-r--r--epan/tvbuff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/tvbuff.c b/epan/tvbuff.c
index be7e32b14f..e4190ae983 100644
--- a/epan/tvbuff.c
+++ b/epan/tvbuff.c
@@ -3142,7 +3142,7 @@ tvb_uncompress(tvbuff_t *tvb _U_, int offset _U_, int comprlen _U_)
}
#endif
-tvbuff_t* tvb_child_uncompress(tvbuff_t *parent _U_, tvbuff_t *tvb, int offset, int comprlen)
+tvbuff_t* tvb_child_uncompress(tvbuff_t *parent, tvbuff_t *tvb, int offset, int comprlen)
{
tvbuff_t *new_tvb = tvb_uncompress(tvb, offset, comprlen);
if (new_tvb)