| commit | e66e227dbe165b791348447a02df81a4a9cfc8d9 | [log] [tgz] |
|---|---|---|
| author | Eric Pouech <eric.pouech@wanadoo.fr> | Mon Feb 06 13:13:28 2006 +0100 |
| committer | Alexandre Julliard <julliard@winehq.org> | Mon Feb 06 13:13:28 2006 +0100 |
| tree | 3fe5e1c17313843bac745548ab833936d7b651d2 | |
| parent | 3c0e5eed83ed40db5728b0a2f5d39c4d6d2e01c9 [diff] [blame] |
Fixes for missing prototypes warnings.
diff --git a/loader/kthread.c b/loader/kthread.c index e27eb2e..eb612a7 100644 --- a/loader/kthread.c +++ b/loader/kthread.c
@@ -564,7 +564,7 @@ static pthread_mutex_t atfork_mutex = PTHREAD_MUTEX_INITIALIZER; -typedef void (*atfork_handler)(); +typedef void (*atfork_handler)(void); static atfork_handler atfork_prepare[MAX_ATFORK]; static atfork_handler atfork_parent[MAX_ATFORK]; static atfork_handler atfork_child[MAX_ATFORK];