aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-09-21 21:07:07 +0000
committerBill Meier <wmeier@newsguy.com>2011-09-21 21:07:07 +0000
commitd4a982fd1f3fc47924ac8beeae756b6273d26221 (patch)
tree174255f7585e62184d0f00fb9cad86eee0543482 /epan/dissectors
parente6bd9d1a8c3b691f342bf7bc9b3ea668ec6a7a16 (diff)
Use '%" G_GINT64_MODIFIER "u' iso '%llu'. Fixes checkapi fail and (presumably) compile errors.
svn path=/trunk/; revision=39083
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-rlc-lte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index bf6f2107d4..448145546b 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -1969,7 +1969,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, PI_MALFORMED, PI_ERROR,
- "Status PDU shouldn't ACK and NACK the same sequence number (%llu)",
+ "Status PDU shouldn't ACK and NACK the same sequence number (%" G_GINT64_MODIFIER "u)",
ack_sn);
}