diff --git a/vfs/ChangeLog b/vfs/ChangeLog index 7360ab83a..1af64b844 100644 --- a/vfs/ChangeLog +++ b/vfs/ChangeLog @@ -1,3 +1,7 @@ +Wed Dec 2 14:06:49 KST 1998 Sung-Hyun Nam + + * direntry.c (vfs_s_new_super): Added the missing return value. + Sun Nov 29 02:54:54 1998 Timur I. Bakeyev * vfs.h: (Temporary?) fix to the compiling error: Some of the error diff --git a/vfs/direntry.c b/vfs/direntry.c index 04c4eb603..1cbd7085b 100644 --- a/vfs/direntry.c +++ b/vfs/direntry.c @@ -349,6 +349,7 @@ vfs_s_super *vfs_s_new_super (vfs *me) super->name = NULL; super->fd_usage = 0; super->me = me; + return super; } void vfs_s_insert_super (vfs *me, vfs_s_super *super)