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-mqueue1.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'rt/tst-mqueue1.c') diff --git a/rt/tst-mqueue1.c b/rt/tst-mqueue1.c index c242c37733..e310fb3049 100644 --- a/rt/tst-mqueue1.c +++ b/rt/tst-mqueue1.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "tst-mqueue.h" static int @@ -46,20 +47,21 @@ check_attrs (struct mq_attr *attr, int nonblock, long cnt) if (attr->mq_maxmsg != 10 || attr->mq_msgsize != 1) { printf ("attributes don't match those passed to mq_open\n" - "mq_maxmsg %ld, mq_msgsize %ld\n", - attr->mq_maxmsg, attr->mq_msgsize); + "mq_maxmsg %jd, mq_msgsize %jd\n", + (intmax_t) attr->mq_maxmsg, (intmax_t) attr->mq_msgsize); result = 1; } if ((attr->mq_flags & O_NONBLOCK) != nonblock) { - printf ("mq_flags %lx != %x\n", (attr->mq_flags & O_NONBLOCK), nonblock); + printf ("mq_flags %jx != %x\n", + (intmax_t) (attr->mq_flags & O_NONBLOCK), nonblock); result = 1; } if (attr->mq_curmsgs != cnt) { - printf ("mq_curmsgs %ld != %ld\n", attr->mq_curmsgs, cnt); + printf ("mq_curmsgs %jd != %ld\n", (intmax_t) attr->mq_curmsgs, cnt); result = 1; } -- cgit v1.2.3