aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/futex.c
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung@gmail.com>2010-09-14 08:43:46 -0400
committerThomas Gleixner <tglx@linutronix.de>2010-09-18 06:19:21 -0400
commit1dcc41bb037533839753df983d31778b30b67d93 (patch)
treed35907b7c569ebc2ac80ca26ca44f0cbc4f66ecb /kernel/futex.c
parent151b6a5f1d4c547c92ec67a5a6fedc16f435956e (diff)
futex: Change 3rd arg of fetch_robust_entry() to unsigned int*
Sparse complains: kernel/futex.c:2495:59: warning: incorrect type in argument 3 (different signedness) Make 3rd argument of fetch_robust_entry() 'unsigned int'. Signed-off-by: Namhyung Kim <namhyung@gmail.com> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Darren Hart <dvhltc@us.ibm.com> LKML-Reference: <1284468228-8723-1-git-send-email-namhyung@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/futex.c')
-rw-r--r--kernel/futex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex.c b/kernel/futex.c
index 6a3a5fa1526d..464de2751ff9 100644
--- a/kernel/futex.c
+++ b/kernel/futex.c
@@ -2458,7 +2458,7 @@ retry:
2458 */ 2458 */
2459static inline int fetch_robust_entry(struct robust_list __user **entry, 2459static inline int fetch_robust_entry(struct robust_list __user **entry,
2460 struct robust_list __user * __user *head, 2460 struct robust_list __user * __user *head,
2461 int *pi) 2461 unsigned int *pi)
2462{ 2462{
2463 unsigned long uentry; 2463 unsigned long uentry;
2464 2464