Skip to content

Commit

Permalink
Merge pull request #472 from maxgerhardt/patch-6
Browse files Browse the repository at this point in the history
Fix copy-paste error in Ardulink init
  • Loading branch information
cnlohr authored Dec 9, 2024
2 parents 2491e92 + 5c807fe commit 9a305d8
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 9a305d8

Please sign in to comment.