diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 21:00:16 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-22 21:00:16 +0000 |
commit | 404d6c9588d3230d970017d04e6ea5383cbbcf39 (patch) | |
tree | faf08d5a4f8603e083c408f60dd4373c13fd5b56 | |
parent | a861d90552c9ee28d7885420ff108d0ec59ff32a (diff) |
(diskfs_direnter): Don't fall off end.
-rw-r--r-- | libdiskfs/direnter.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libdiskfs/direnter.c b/libdiskfs/direnter.c index 04de41cd..7fca4af5 100644 --- a/libdiskfs/direnter.c +++ b/libdiskfs/direnter.c @@ -44,5 +44,6 @@ diskfs_direnter (struct node *dp, diskfs_notice_dirchange (dp, DIR_CHANGED_NEW, name); diskfs_enter_cache (dp, np, name); + return 0; } |