Skip to content

Commit

Permalink
Merge pull request #141 from dynotx/master
Browse files Browse the repository at this point in the history
Fix compilation on newer gcc versions
  • Loading branch information
cmaceves committed Oct 24, 2022
2 parents bafc7b9 + 47a43d4 commit e09697d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ivar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ int main(int argc, char* argv[]){
for (int i = 0; i < nfiles; ++i) {
free(files[i]);
}
free(files);
delete[] files;
} else {
res = common_variants(g_args.prefix, g_args.min_threshold, argv + optind, argc - optind);
}
Expand Down

0 comments on commit e09697d

Please sign in to comment.