tventi: fix writedonechan size in bloom - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit d117737d44dee991e466d2e706861bbbf3072f6c
(DIR) parent e7e953b3dadb5aba3bb2f3f05b2beff94934a4dc
(HTM) Author: David du Colombier <0intro@gmail.com>
Date: Wed, 2 May 2012 06:44:38 +0200
venti: fix writedonechan size in bloom
R=rsc
http://codereview.appspot.com/6128063
Diffstat:
M src/cmd/venti/srv/bloom.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/cmd/venti/srv/bloom.c b/src/cmd/venti/srv/bloom.c
t@@ -267,6 +267,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);
}