diff options
Diffstat (limited to 'ufs/sizes.c')
-rw-r--r-- | ufs/sizes.c | 2 |
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); } |