From 5d619de4610fa00d0b633e1916c49e59824440ff Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 19 Dec 2014 14:00:59 -0800 Subject: Replace %ld/%lu with %jd/%ju and cast to intmax_t/uintmax_t --- rt/tst-mqueue3.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'rt/tst-mqueue3.c') diff --git a/rt/tst-mqueue3.c b/rt/tst-mqueue3.c index 4607e1b..c7270a1 100644 --- a/rt/tst-mqueue3.c +++ b/rt/tst-mqueue3.c @@ -61,14 +61,14 @@ fct (union sigval s) /* Check the values. */ if (attr.mq_maxmsg != MAXMSG) { - printf ("%s: mq_maxmsg wrong: is %ld, expecte %d\n", - __FUNCTION__, attr.mq_maxmsg, MAXMSG); + printf ("%s: mq_maxmsg wrong: is %jd, expecte %d\n", + __FUNCTION__, (intmax_t) attr.mq_maxmsg, MAXMSG); exit (1); } if (attr.mq_msgsize != MAXMSG) { - printf ("%s: mq_msgsize wrong: is %ld, expecte %d\n", - __FUNCTION__, attr.mq_msgsize, MSGSIZE); + printf ("%s: mq_msgsize wrong: is %jd, expecte %d\n", + __FUNCTION__, (intmax_t) attr.mq_msgsize, MSGSIZE); exit (1); } -- cgit v1.1