From: Lionel Sambuc Date: Sun, 20 Dec 2015 10:00:58 +0000 (+0100) Subject: VFS: fix prototype related warning X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch13.html?a=commitdiff_plain;h=refs%2Fchanges%2F25%2F3225%2F2;p=minix.git VFS: fix prototype related warning Change-Id: Ie01454cdcc0c900916f4b6efd3a965079187509f --- diff --git a/minix/servers/vfs/fproc.h b/minix/servers/vfs/fproc.h index 25f6eddff..8d74292e9 100644 --- a/minix/servers/vfs/fproc.h +++ b/minix/servers/vfs/fproc.h @@ -46,7 +46,7 @@ EXTERN struct fproc { mutex_t fp_lock; /* mutex to lock fproc object */ struct worker_thread *fp_worker;/* active worker thread, or NULL */ - void (*fp_func)(); /* handler function for pending work */ + void (*fp_func)(void); /* handler function for pending work */ message fp_msg; /* pending or active message from process */ message fp_pm_msg; /* pending/active postponed PM request */