diff options
author | Miles Bader <miles@gnu.org> | 1996-09-23 17:25:16 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-09-23 17:25:16 +0000 |
commit | ffa6ca7c95f3af0403ca40e55230d3cf0299e3c9 (patch) | |
tree | 73ce214e814f7449c3d3f5b69efbb5e2913d25a4 /ufs | |
parent | 6a70ab55d4b174db40712453ff37e367cc2adfe4 (diff) |
(sync_disk):
Use DISKFS_DISK_PAGER instead of DISK_PAGER.
Diffstat (limited to 'ufs')
-rw-r--r-- | ufs/pokeloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ufs/pokeloc.c b/ufs/pokeloc.c index d09942e8..267aa106 100644 --- a/ufs/pokeloc.c +++ b/ufs/pokeloc.c @@ -75,7 +75,7 @@ sync_disk (int wait) spin_lock (&pokelistlock); for (pl = pokelist; pl; pl = tmp) { - pager_sync_some (disk_pager, pl->offset, pl->length, wait); + pager_sync_some (diskfs_disk_pager, pl->offset, pl->length, wait); tmp = pl->next; free (pl); } |