From a5e58a61420e99dd08685f622d4dc666bf07e9a5 Mon Sep 17 00:00:00 2001 From: David Rientjes Date: Tue, 31 Jul 2007 00:37:32 -0700 Subject: oom: print points as unsigned long In badness(), the automatic variable 'points' is unsigned long. Print it as such. Signed-off-by: David Rientjes Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- mm/oom_kill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mm') diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 10367654ae7..f9b82ad5047 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -157,7 +157,7 @@ unsigned long badness(struct task_struct *p, unsigned long uptime) } #ifdef DEBUG - printk(KERN_DEBUG "OOMkill: task %d (%s) got %d points\n", + printk(KERN_DEBUG "OOMkill: task %d (%s) got %lu points\n", p->pid, p->comm, points); #endif return points; -- cgit v1.2.3