diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-04-23 18:35:14 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-04-23 18:35:14 +0000 |
commit | 1714516ba039f1197ea7ead3aa450b9b7f9b015e (patch) | |
tree | 1c840cc5a8aae1640331ae5b3e7fc987f47b2a40 | |
parent | 563a7efccc51e09063bf17c77822675813fe3f5e (diff) |
(diskfs_dirempty): node_update -> diskfs_node_update.
-rw-r--r-- | ufs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -718,14 +718,14 @@ diskfs_dirempty(struct node *dp, if (!diskfs_readonly) dp->dn_set_atime = 1; if (diskfs_synchronous) - node_update (dp, 1); + diskfs_node_update (dp, 1); return 0; } } if (!diskfs_readonly) dp->dn_set_atime = 1; if (diskfs_synchronous) - node_update (dp, 1); + diskfs_node_update (dp, 1); vm_deallocate (mach_task_self (), buf, dp->dn_stat.st_size); return 1; } |