diff --git a/servers/hgfs/table.c b/servers/hgfs/table.c index 17f0c3fca..9db3dbfc5 100644 --- a/servers/hgfs/table.c +++ b/servers/hgfs/table.c @@ -40,6 +40,7 @@ PUBLIC _PROTOTYPE( int (*call_vec[]), (void) ) = { no_sys, /* 29 newnode */ no_sys, /* 30 rdlink */ do_getdents, /* 31 getdents */ + no_sys, /* 32 statvfs */ }; /* This should not fail with "array size is negative": */ diff --git a/servers/iso9660fs/table.c b/servers/iso9660fs/table.c index 87f0cf125..8767c3149 100644 --- a/servers/iso9660fs/table.c +++ b/servers/iso9660fs/table.c @@ -40,4 +40,5 @@ PUBLIC _PROTOTYPE (int (*fs_call_vec[]), (void) ) = { no_sys, /* 52: not used */ no_sys, /* 53: not used */ fs_getdents, /* 54 */ + no_sys, /* 32 */ }; diff --git a/servers/mfs/table.c b/servers/mfs/table.c index 8d733095b..d9f99874d 100644 --- a/servers/mfs/table.c +++ b/servers/mfs/table.c @@ -44,5 +44,6 @@ PUBLIC _PROTOTYPE (int (*fs_call_vec[]), (void) ) = { no_sys, /* 29 */ /* Was: fs_newnode */ fs_rdlink, /* 30 */ fs_getdents, /* 31 */ + no_sys, /* 32 */ }; diff --git a/servers/pfs/table.c b/servers/pfs/table.c index da3e03ccf..110d02250 100644 --- a/servers/pfs/table.c +++ b/servers/pfs/table.c @@ -42,5 +42,6 @@ PUBLIC _PROTOTYPE (int (*fs_call_vec[]), (void) ) = { fs_newnode, /* 29 */ no_sys, /* 30 */ no_sys, /* 31 */ + no_sys, /* 32 */ };