Skip to content

Commit

Permalink
Remove CRAM 3.1 warning.
Browse files Browse the repository at this point in the history
The code would now trigger on 3.2 as well as 4.x, although 3.2 doesn't
exist.  It's easier to check this way though as a future-proof.
  • Loading branch information
jkbonfield authored and daviesrob committed Mar 21, 2023
1 parent 46bcc36 commit c1634e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cram/cram_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -5776,7 +5776,7 @@ int cram_set_voption(cram_fd *fd, enum hts_fmt_option opt, va_list args) {
return -1;
}

if (major > 3 || (major == 3 && minor > 0)) {
if (major > 3 || (major == 3 && minor > 1)) {
hts_log_warning(
"CRAM version %s is still a draft and subject to change.\n"
"This is a technology demonstration that should not be "
Expand Down

0 comments on commit c1634e7

Please sign in to comment.