summaryrefslogtreecommitdiff
path: root/ufs/sizes.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-04-23 19:00:00 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-04-23 19:00:00 +0000
commit0e4c5cc421ead3d4824556e3495f9bac9572d908 (patch)
tree688bd49c258220a9cb297dbe8968b7f861dac1db /ufs/sizes.c
parent56bf2ed340a2f3e89b3e0a0079d14043009becd9 (diff)
(block_extended):
Diffstat (limited to 'ufs/sizes.c')
-rw-r--r--ufs/sizes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ufs/sizes.c b/ufs/sizes.c
index 8e4a85e9..98ec49d1 100644
--- a/ufs/sizes.c
+++ b/ufs/sizes.c
@@ -402,7 +402,7 @@ block_extended (struct node *np,
(void *) &buf, vm_page_size);
/* If this page is the last one, then zero the excess first */
if (off + vm_page_size > old_size)
- bzero ((vod *)(buf + old_size - off),
+ bzero ((void *)(buf + old_size - off),
vm_page_size - (old_size - off));
offer_data (np, lbn * sblock->fs_bsize + off, vm_page_size, buf);
}