print args
This commit is contained in:
parent
8b025e0f61
commit
3d46902dcc
1 changed files with 3 additions and 2 deletions
|
|
@ -24,7 +24,8 @@ threadmain(int argc, char *argv[])
|
|||
statsinit();
|
||||
|
||||
size = 0;
|
||||
nhash = nblocks = 0;
|
||||
nhash = 0;
|
||||
nblocks = 0;
|
||||
ARGBEGIN{
|
||||
case 'n':
|
||||
if(nhash || nblocks)
|
||||
|
|
@ -67,7 +68,7 @@ threadmain(int argc, char *argv[])
|
|||
|
||||
if(size > MaxBloomSize){
|
||||
fprint(2, "warning: not using entire %,lld bytes; using only %,lld bytes\n",
|
||||
size, MaxBloomSize);
|
||||
size, (vlong)MaxBloomSize);
|
||||
size = MaxBloomSize;
|
||||
}
|
||||
if(size&(size-1)){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue