venti: fix writedonechan size in bloom
R=rsc http://codereview.appspot.com/6128063
This commit is contained in:
parent
e7e953b3da
commit
d117737d44
1 changed files with 1 additions and 1 deletions
|
|
@ -267,6 +267,6 @@ void
|
||||||
startbloomproc(Bloom *b)
|
startbloomproc(Bloom *b)
|
||||||
{
|
{
|
||||||
b->writechan = chancreate(sizeof(void*), 0);
|
b->writechan = chancreate(sizeof(void*), 0);
|
||||||
b->writedonechan = chancreate(sizeof(void*), 0);
|
b->writedonechan = chancreate(sizeof(ulong), 0);
|
||||||
vtproc(bloomwriteproc, b);
|
vtproc(bloomwriteproc, b);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue