kernel/sched.c: In function `can_migrate_task':
kernel/sched.c:1666: warning: value computed is not used

(How well tested was this then?)

Signed-off-by: Andrew Morton <akpm@osdl.org>
---

 25-akpm/kernel/sched.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN kernel/sched.c~sched-improve-pinned-task-handling-fix kernel/sched.c
--- 25/kernel/sched.c~sched-improve-pinned-task-handling-fix	2005-02-28 18:34:54.000000000 -0800
+++ 25-akpm/kernel/sched.c	2005-02-28 18:34:58.000000000 -0800
@@ -1663,7 +1663,7 @@ int can_migrate_task(task_t *p, runqueue
 	if (task_running(rq, p))
 		return 0;
 	if (!cpu_isset(this_cpu, p->cpus_allowed)) {
-		*pinned++;
+		(*pinned)++;
 		return 0;
 	}
 
_