Skip to content

Commit

Permalink
fix odgi pav seg fault
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGuarracino committed Oct 24, 2023
1 parent de70fcd commit 86e62ba
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/subcommand/pav_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,9 @@ int main_pav(int argc, char **argv) {
operation_progress->increment(1);
}
}
operation_progress->finish();

if (show_progress) {
operation_progress->finish();
}
const bool emit_matrix_else_table = args::get(_matrix_output);

// Emit the PAV matrix
Expand Down Expand Up @@ -406,8 +407,9 @@ int main_pav(int argc, char **argv) {
operation_progress->increment(1);
}
}
operation_progress->finish();

if (show_progress) {
operation_progress->finish();
}
return 0;
}

Expand Down

0 comments on commit 86e62ba

Please sign in to comment.