From 4f959600b6cce4334367e7748e87a2a0ec42ab29 Mon Sep 17 00:00:00 2001 From: rsc Date: Thu, 20 Apr 2006 21:01:48 +0000 Subject: minor bug fixes (mechiel lukkien, andrey) --- src/cmd/venti/srv/bloom.c | 2 -- src/cmd/venti/srv/fmtbloom.c | 2 +- src/cmd/venti/srv/graph.c | 2 +- src/cmd/venti/srv/part.c | 2 +- 4 files changed, 3 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/cmd/venti/srv/bloom.c b/src/cmd/venti/srv/bloom.c index e8defb4a..e54e3885 100644 --- a/src/cmd/venti/srv/bloom.c +++ b/src/cmd/venti/srv/bloom.c @@ -101,8 +101,6 @@ gethashes(u8int *score, ulong *h) a ^= *(u32int*)(score+i); b ^= *(u32int*)(score+i+4); } - if(i+4 <= VtScoreSize) /* 20 is not 4-aligned */ - a ^= *(u32int*)(score+i); for(i=0; iwid > nelem(bin)) g->wid = nelem(bin); if(g->fill < 0) - g->fill = ((uint)g->arg>>8)%nelem(lofill); + g->fill = ((uint)(uintptr)g->arg>>8)%nelem(lofill); if(g->fill > nelem(lofill)) g->fill %= nelem(lofill); diff --git a/src/cmd/venti/srv/part.c b/src/cmd/venti/srv/part.c index f804af88..ff5c98e5 100644 --- a/src/cmd/venti/srv/part.c +++ b/src/cmd/venti/srv/part.c @@ -313,7 +313,7 @@ print("FAILED isread=%d r=%d count=%d blocksize=%d\n", isread, r, count, blocksi memmove(buf, tmp, count); else{ memmove(tmp, buf, count); - if(pwrite(fd, tmp, opsize, offset) != blocksize){ + if(pwrite(fd, tmp, blocksize, offset) != blocksize){ dst = tmp; op = "write"; goto Error; -- cgit v1.2.3