Skip to content

Commit

Permalink
crc: crc -> crc_w
Browse files Browse the repository at this point in the history
  • Loading branch information
pkova authored Jun 25, 2024
1 parent b3987e2 commit a6eac43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/noun/jets/e/crc32.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ u3qe_crc32(u3_noun input_octs)
c3_w led_w = hed_w - tel_w;
c3_w crc_w = 0;

crc_w = crc32(crc, input, tel_w);
crc_w = crc32(crc_w, input, tel_w);

while ( led_w > 0 ) {
c3_y byt_y = 0;
crc_w = crc32(crc, &byt_y, 1);
crc_w = crc32(crc_w, &byt_y, 1);
led_w--;
}

Expand Down

0 comments on commit a6eac43

Please sign in to comment.