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/%22/xml/v3/mem/static/gitweb.css?a=commitdiff_plain;h=3332c3a5558f2d4d40a502945acaad9706c3f058;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 */