Signed-off-by: Jesse Millan The function kauditd_thread() does not return an integer as the declaration says it should. There is no return statement in the body whatsoever and looks like the function should have been declared as returning void. --- diff -puN kernel/audit.c~audit-patch kernel/audit.c --- linux-2.6.13-rc1.kj.jm.gcc4/kernel/audit.c~audit-patch 2005-07-01 10:59:36.417950168 -0700 +++ linux-2.6.13-rc1.kj.jm.gcc4-jessem/kernel/audit.c 2005-07-01 11:00:52.979311072 -0700 @@ -275,7 +275,7 @@ static int audit_set_failure(int state, return old; } -int kauditd_thread(void *dummy) +void kauditd_thread(void *dummy) { struct sk_buff *skb; _