From 3332c3a5558f2d4d40a502945acaad9706c3f058 Mon Sep 17 00:00:00 2001 From: Lionel Sambuc Date: Sun, 20 Dec 2015 11:00:58 +0100 Subject: [PATCH] VFS: fix prototype related warning Change-Id: Ie01454cdcc0c900916f4b6efd3a965079187509f --- minix/servers/vfs/fproc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.44.0