more cache miss bugs

This commit is contained in:
Todd Gruben 2014-12-02 20:57:23 +00:00
parent f566296f7c
commit afa42e1af0

View file

@ -65,7 +65,7 @@ func NewCount(bitmap_handle BitmapHandle) *CmdCount {
func (self *CmdCount) Execute(f *Fragment) Calculation {
bm, ok := f.getBitmap(self.bitmap)
if ok == false {
return 0
return uint64(0)
}
return BitCount(bm)
}