Spotted by Randy Dunlap - don't try to return something from a void-returning function. Signed-off-by: Andrew Morton --- 25-akpm/include/linux/sched.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/sched.h~wake_up_forked_thread-fix include/linux/sched.h --- 25/include/linux/sched.h~wake_up_forked_thread-fix 2004-06-07 21:10:46.342808576 -0700 +++ 25-akpm/include/linux/sched.h 2004-06-07 21:10:50.529172152 -0700 @@ -738,7 +738,7 @@ extern void FASTCALL(wake_up_forked_proc static inline void kick_process(struct task_struct *tsk) { } static inline void wake_up_forked_thread(struct task_struct * tsk) { - return wake_up_forked_process(tsk); + wake_up_forked_process(tsk); } #endif extern void FASTCALL(sched_fork(task_t * p)); _