commit 3d46902dccd9fa84ca2e7041739e702bfc9dadb7 from: rsc date: Sat Oct 29 17:39:52 2005 UTC print args commit - 8b025e0f61b6ee5d8104ffafc3b89a113eb21605 commit + 3d46902dccd9fa84ca2e7041739e702bfc9dadb7 blob - 3c50d82fea62416ff6049aaf83ba155e471643e8 blob + aca5c53328782385b94f24e3f1a4ac2634cd7ee4 --- src/cmd/venti/srv/fmtbloom.c +++ src/cmd/venti/srv/fmtbloom.c @@ -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)){