aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtps2.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-08-13 06:33:39 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2008-08-13 06:33:39 +0000
commit175a669e0c4df2e1ba0c860a1f51d72d971d2d08 (patch)
tree0d878c6c36208400263e3a5cabf3b8565a918858 /epan/dissectors/packet-rtps2.c
parentebe6f0b0d28af13eb9307f0f55ee211251166526 (diff)
Fix:
packet-rtps.c:1462: warning: unused parameter 'label' packet-rtps.c:2767: warning: unused parameter 'label' packet-rtps2.c:1687: warning: unused parameter 'label' packet-rtps2.c:3049: warning: unused parameter 'label' packet-rtps2.c:3147: warning: unused parameter 'label' git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25995 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-rtps2.c')
-rw-r--r--epan/dissectors/packet-rtps2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-rtps2.c b/epan/dissectors/packet-rtps2.c
index 97b5d7b285..510df838a0 100644
--- a/epan/dissectors/packet-rtps2.c
+++ b/epan/dissectors/packet-rtps2.c
@@ -1684,7 +1684,7 @@ static guint64 rtps_util_add_seq_number(proto_tree *tree,
tvbuff_t * tvb,
gint offset,
int little_endian,
- const char *label) {
+ const char *label _U_) {
guint64 hi = (guint64)NEXT_guint32(tvb, offset, little_endian);
guint64 lo = (guint64)NEXT_guint32(tvb, offset+4, little_endian);
guint64 all = (hi << 32) | lo;
@@ -3046,7 +3046,7 @@ static int rtps_util_add_bitmap(proto_tree *tree,
tvbuff_t * tvb,
gint offset,
int little_endian,
- const char *label) {
+ const char *label _U_) {
guint64 seq_base;
gint32 num_bits;
guint32 data;
@@ -3144,7 +3144,7 @@ static int rtps_util_add_fragment_number_set(proto_tree *tree,
tvbuff_t * tvb,
gint offset,
int little_endian,
- const char *label,
+ const char *label _U_,
gint section_size) {
guint64 base;
gint32 num_bits;