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