Skip to content

Commit

Permalink
Apply patch spelling-error-in-binary.patch
Browse files Browse the repository at this point in the history
  • Loading branch information
nickjcroucher committed Dec 20, 2020
1 parent 4a9835f commit ccc7a52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/alignment_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ int genome_length(char filename[])
int length_of_genome;

if( access( filename, F_OK ) == -1 ) {
printf("Cannot calculate genome_length because file '%s' doesnt exist\n",filename);
printf("Cannot calculate genome_length because file '%s' does not exist\n",filename);
exit(0);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int check_file_exists_or_exit(char * filename)
if( access( filename, F_OK ) != -1 ) {
return 1;
} else {
printf("Error: File '%s' doesnt exist\n",filename);
printf("Error: File '%s' does not exist\n",filename);
print_usage(stderr, EXIT_FAILURE);
return 0;
}
Expand Down

0 comments on commit ccc7a52

Please sign in to comment.