aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc-lte.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-rlc-lte.c')
-rw-r--r--epan/dissectors/packet-rlc-lte.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index c576f30bb6..e49530f705 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -653,7 +653,7 @@ static void write_pdu_label_and_info(proto_item *pdu_ti, proto_item *sub_ti,
va_list ap;
va_start(ap, format);
- g_vsnprintf(info_buffer, MAX_INFO_BUFFER, format, ap);
+ vsnprintf(info_buffer, MAX_INFO_BUFFER, format, ap);
va_end(ap);
/* Add to indicated places */
@@ -664,7 +664,7 @@ static void write_pdu_label_and_info(proto_item *pdu_ti, proto_item *sub_ti,
}
}
-/* Version of function above, where no g_vsnprintf() call needed
+/* Version of function above, where no vsnprintf() call needed
- the info column
- the top-level RLC PDU item
- another subtree item (if supplied) */
@@ -2380,7 +2380,7 @@ static void dissect_rlc_lte_am_status_pdu(tvbuff_t *tvb,
/* We shouldn't NACK the ACK_SN! */
if (nack_sn == ack_sn) {
expert_add_info_format(pinfo, nack_ti, &ei_rlc_lte_am_nack_sn_ack_same,
- "Status PDU shouldn't ACK and NACK the same sequence number (%" G_GINT64_MODIFIER "u)",
+ "Status PDU shouldn't ACK and NACK the same sequence number (%" PRIu64 ")",
ack_sn);
}