aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-03-16 12:34:52 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-25 22:26:17 -0700
commit514bca322cb9220308d22691ac1e74038bfabac3 (patch)
tree04f46e4fa9dcc6f8467888fcc9a161215700d4a4 /net
parent[NET_SCHED]: sch_cbq: fix watchdog scheduled too late (diff)
downloadlinux-dev-514bca322cb9220308d22691ac1e74038bfabac3.tar.xz
linux-dev-514bca322cb9220308d22691ac1e74038bfabac3.zip
[NET_SCHED]: Fix warning
net/sched/sch_api.c: In function 'psched_show': net/sched/sch_api.c:1219: warning: format '%08x' expects type 'unsigned int', but argument 6 has type 's64' Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sched/sch_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/sch_api.c b/net/sched/sch_api.c
index 047ae62ff4fa..ecbdc6b42a9c 100644
--- a/net/sched/sch_api.c
+++ b/net/sched/sch_api.c
@@ -1216,7 +1216,8 @@ static int psched_show(struct seq_file *seq, void *v)
{
seq_printf(seq, "%08x %08x %08x %08x\n",
(u32)NSEC_PER_USEC, (u32)PSCHED_US2NS(1),
- 1000000, (u32)NSEC_PER_SEC/ktime_to_ns(KTIME_MONOTONIC_RES));
+ 1000000,
+ (u32)NSEC_PER_SEC/(u32)ktime_to_ns(KTIME_MONOTONIC_RES));
return 0;
}