summaryrefslogtreecommitdiff
path: root/ufs
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-09-23 17:25:16 +0000
committerMiles Bader <miles@gnu.org>1996-09-23 17:25:16 +0000
commitffa6ca7c95f3af0403ca40e55230d3cf0299e3c9 (patch)
tree73ce214e814f7449c3d3f5b69efbb5e2913d25a4 /ufs
parent6a70ab55d4b174db40712453ff37e367cc2adfe4 (diff)
(sync_disk):
Use DISKFS_DISK_PAGER instead of DISK_PAGER.
Diffstat (limited to 'ufs')
-rw-r--r--ufs/pokeloc.c2
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);
}