venti: fix wrong channel element size for amd64 (thanks mycroftiv)
This commit is contained in:
parent
7776180407
commit
05f721e998
1 changed files with 1 additions and 1 deletions
|
@ -251,6 +251,6 @@ void
|
|||
startbloomproc(Bloom *b)
|
||||
{
|
||||
b->writechan = chancreate(sizeof(void*), 0);
|
||||
b->writedonechan = chancreate(sizeof(void*), 0);
|
||||
b->writedonechan = chancreate(sizeof(ulong), 0);
|
||||
vtproc(bloomwriteproc, b);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue