diff options
Diffstat (limited to 'support/nfs/fstab.c')
-rw-r--r-- | support/nfs/fstab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support/nfs/fstab.c b/support/nfs/fstab.c index aee8e53..b4f8710 100644 --- a/support/nfs/fstab.c +++ b/support/nfs/fstab.c @@ -87,14 +87,14 @@ static void read_mounttable(void); static void read_fstab(void); static struct mntentchn * -mtab_head() { +mtab_head(void) { if (!got_mtab) read_mounttable(); return &mounttable; } static struct mntentchn * -fstab_head() +fstab_head(void) { if (!got_fstab) read_fstab(); |