aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpls.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-mpls.c')
-rw-r--r--epan/dissectors/packet-mpls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-mpls.c b/epan/dissectors/packet-mpls.c
index 4ecb10d121..47cb30313a 100644
--- a/epan/dissectors/packet-mpls.c
+++ b/epan/dissectors/packet-mpls.c
@@ -473,13 +473,13 @@ dissect_mpls(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
}
if ((label == MPLS_LABEL_GACH) && bos) {
- g_strlcpy(PW_ACH, "Generic Associated Channel Header",50);
+ (void) g_strlcpy(PW_ACH, "Generic Associated Channel Header",50);
next_tvb = tvb_new_subset_remaining(tvb, offset);
call_dissector(dissector_pw_ach, next_tvb, pinfo, tree );
return tvb_captured_length(tvb);
}
else
- g_strlcpy(PW_ACH, "PW Associated Channel Header",50);
+ (void) g_strlcpy(PW_ACH, "PW Associated Channel Header",50);
if (bos)
break;