aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtps2.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2008-08-13 06:33:39 +0000
committerAnders Broman <anders.broman@ericsson.com>2008-08-13 06:33:39 +0000
commit255d6b0af966bbe50037dad60386dbb318a6ce4a (patch)
tree0d878c6c36208400263e3a5cabf3b8565a918858 /epan/dissectors/packet-rtps2.c
parenta143298812a9511991f9400ed3c2b848a6e57774 (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' svn path=/trunk/; revision=25995
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;