Re: [PATCH] OOM: print points as unsigned int

2015-05-28 Thread Michal Hocko
On Thu 28-05-15 09:46:44, Wang Long wrote: > In oom_kill_process(), the variable 'points' is unsigned int. > Print it as such. > > Signed-off-by: Wang Long I do not think this matter much in the real life but there is no reason to use a wrong format type. Acked-by: Michal Hocko Thanks! > ---

[PATCH] OOM: print points as unsigned int

2015-05-28 Thread Wang Long
In oom_kill_process(), the variable 'points' is unsigned int. Print it as such. Signed-off-by: Wang Long --- mm/oom_kill.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 2b665da..056002c 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c @@ -5