aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/epan/profinet/packet-pn.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/epan/profinet/packet-pn.c')
-rw-r--r--plugins/epan/profinet/packet-pn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/epan/profinet/packet-pn.c b/plugins/epan/profinet/packet-pn.c
index b906a5dba6..c5c29cf583 100644
--- a/plugins/epan/profinet/packet-pn.c
+++ b/plugins/epan/profinet/packet-pn.c
@@ -1448,7 +1448,7 @@ char *pn_fgets(char *str, int n, FILE *stream)
/* Check we have space left in the buffer to move the trailing bytes after the comment end */
size_t remaining_bytes = strlen(comment_end_end) + 1;
if (remaining_bytes < remaining_space) {
- g_strlcat(str, comment_end_end, n);
+ (void) g_strlcat(str, comment_end_end, n);
}
else {
/* Seek the file back to the comment end so the next read picks it up */