Skip to content

Commit e23c58a

Browse files
authored
Typo in BLOCKDATA module (wrong constraint for NUMBER for the first block in the conflation) (#575)
1 parent 81d5c3a commit e23c58a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blockdata/processing/number.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
(begin
4040
(if-not-zero (is-first-block-in-conflation)
4141
(begin (vanishes! (curr-NUMBER-hi))
42-
(vanishes! (curr-NUMBER-lo))))
42+
(eq! (curr-NUMBER-lo) FIRST_BLOCK_NUMBER)))
4343
(if-not-zero (isnt-first-block-in-conflation)
4444
(begin (eq! (curr-NUMBER-hi) (prev-NUMBER-hi))
4545
(eq! (curr-NUMBER-lo) (+ (prev-NUMBER-lo) 1))))

0 commit comments

Comments
 (0)