Skip to content

Commit

Permalink
Better grammar in error msg
Browse files Browse the repository at this point in the history
  • Loading branch information
kdm9 committed Apr 11, 2023
1 parent 6d1ed0f commit aa6daae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ int main(int argc, char *argv[])
for (i = o.ind + 1; i < argc; ++i) {
int32_t res = mp_map_file(mi, argv[i], &mo, n_threads);
if (res != 0) {
fprintf(stderr, "[M::%s] ERROR during mapping %s (check files exists and is amino acid fasta)\n", __func__, argv[i]);
fprintf(stderr, "[M::%s] ERROR during mapping %s (check files exists and are amino acid fastas)\n", __func__, argv[i]);
return 1;
}
}
Expand Down

0 comments on commit aa6daae

Please sign in to comment.