Skip to content

Commit

Permalink
Fix loop variable
Browse files Browse the repository at this point in the history
  • Loading branch information
kovzol committed Jan 6, 2025
1 parent 9025e2d commit 6245095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statements/pbrst.y
Original file line number Diff line number Diff line change
Expand Up @@ -1200,7 +1200,7 @@ void reset_data() { // important if a previous run was already performed
// yydebug = 1;

for (int i=0; i<MAX_INTERVALS; i++) {
for (int j=0; i<MAX_BOOK_LENGTH; i++) {
for (int j=0; j<MAX_BOOK_LENGTH; j++) {
// covering[i][j] = 0;
}
intervals[i][0] = 0;
Expand Down

0 comments on commit 6245095

Please sign in to comment.