Skip to content

Commit

Permalink
fix failing-to-stop-early bug in line
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasgscofield committed Oct 25, 2017
1 parent 357e580 commit fc9f171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion line
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ BEGIN {
if (!max || (max && NR <= max))
_print_line = 1;
} else if (max && NR <= max) {
if (!min || (min && NR >= max))
if (!min || (min && NR >= min))
_print_line = 1;
} else if (stride && _in_chunk) {
_print_line = 1;
Expand Down

0 comments on commit fc9f171

Please sign in to comment.