From: Patrick McHardy Date: Thu, 24 Jan 2008 04:32:06 +0000 (-0800) Subject: [NET_SCHED]: sch_atm: fix format string warning X-Git-Tag: v2.6.25-rc1~1162^2~18 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=f5e5cb75539749960d7d35f8a7da29e2f4b96320;p=linux.git [NET_SCHED]: sch_atm: fix format string warning Fix format string warning introduces by the netlink API conversion: net/sched/sch_atm.c:250: warning: format '%lu' expects type 'long unsigned int', but argument 3 has type 'int'. Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller --- diff --git a/net/sched/sch_atm.c b/net/sched/sch_atm.c index eb01aae117df..e58739153782 100644 --- a/net/sched/sch_atm.c +++ b/net/sched/sch_atm.c @@ -246,7 +246,7 @@ static int atm_tc_change(struct Qdisc *sch, u32 classid, u32 parent, if (!excess) return -ENOENT; } - pr_debug("atm_tc_change: type %d, payload %lu, hdr_len %d\n", + pr_debug("atm_tc_change: type %d, payload %d, hdr_len %d\n", opt->nla_type, nla_len(opt), hdr_len); sock = sockfd_lookup(fd, &error); if (!sock)