Skip to content

Commit

Permalink
FIX: switches to more correct unsigned shifting for bitarrays reading.
Browse files Browse the repository at this point in the history
  • Loading branch information
dockimbel committed May 23, 2024
1 parent ec186ad commit c6188b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/collector.reds
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ collector: context [
]
]
]
bits: bits >> 1 ;-- next slot flag
bits: bits >>> 1 ;-- next slot flag
]
map: map + 1 ;-- next 31 slots bitmap
not ext? ;-- loop until no more extended slots
Expand Down

0 comments on commit c6188b9

Please sign in to comment.