Skip to content

Commit

Permalink
Fix typo preventing specpgm hint from being read on cmdline
Browse files Browse the repository at this point in the history
  • Loading branch information
BobRyan530 committed Dec 23, 2023
1 parent 2fa932a commit a41590c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minichlink/minichlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ int main( int argc, char ** argv )
if( i < argc )
hints.serial_port = argv[i];
}
else if( strncmp( v, "-c", 2 ) == 0 )
else if( strncmp( v, "-C", 2 ) == 0 )
{
i++;
if( i < argc )
Expand Down

0 comments on commit a41590c

Please sign in to comment.