Skip to content

Commit

Permalink
Merge pull request #3 from agalychnica/master
Browse files Browse the repository at this point in the history
Fixed missing definition
  • Loading branch information
ChrisCreevey authored Aug 29, 2023
2 parents 7da7b94 + bbecd77 commit 3f1a2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catsequences.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ int main(int argc, char *argv[])

if(string[0] == '>')
{
string[strcspn(string, " |.")] = '\0'; /* species name is initial string up to [ |.] */
string[strcspn(string, NAMEDELIMITER)] = '\0'; /* species name is initial string up to [ |.] */
found = -1;
for(i=0; i<numspecies; i++)
{
Expand Down

0 comments on commit 3f1a2a8

Please sign in to comment.