Skip to content

Commit

Permalink
Fix copy-paste error in Ardulink init
Browse files Browse the repository at this point in the history
  • Loading branch information
maxgerhardt authored Dec 7, 2024
1 parent 2491e92 commit 5c807fe
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 @@ -45,7 +45,7 @@ void * MiniCHLinkInitAsDLL( struct MiniChlinkFunctions ** MCFO, const init_hints
else if( strcmp( specpgm, "b003boot" ) == 0 )
dev = TryInit_B003Fun();
else if( strcmp( specpgm, "ardulink" ) == 0 )
dev = TryInit_B003Fun();
dev = TryInit_Ardulink(init_hints);
}
else
{
Expand Down

0 comments on commit 5c807fe

Please sign in to comment.