Don't use roundup2(9) (which should have been howmany(9) anyway) to

fix builds on platforms other than NetBSD.
This commit is contained in:
tron 2011-07-18 22:50:28 +00:00
parent f1ca1ce2bf
commit 4cafa08a7d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: main.c,v 1.3 2011/07/18 21:51:49 apb Exp $ */
/* $NetBSD: main.c,v 1.4 2011/07/18 22:50:28 tron Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@ -35,7 +35,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: main.c,v 1.3 2011/07/18 21:51:49 apb Exp $");
__RCSID("$NetBSD: main.c,v 1.4 2011/07/18 22:50:28 tron Exp $");
#endif /* not lint */
#include <sys/param.h>
@ -62,7 +62,7 @@ determine_ilist_size(v7fs_daddr_t volume_size, int32_t files)
v7fs_daddr_t ilist_size;
if (files)
ilist_size = roundup2(files, V7FS_INODE_PER_BLOCK) /
ilist_size = (files + V7FS_INODE_PER_BLOCK - 1) /
V7FS_INODE_PER_BLOCK;
else
ilist_size = volume_size / 25; /* 4% */