Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillis committed Feb 25, 2023
1 parent a1984ab commit f17169f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
using: "composite"
steps:
- run: |
curl -OL https://github.com/casadi/mockups/releases/download/v45/mockups_${{ inputs.tag }}.zip
curl -OL https://github.com/casadi/mockups/releases/download/v46/mockups_${{ inputs.tag }}.zip
unzip mockups_${{ inputs.tag }}.zip -d mockups
ls mockups
ls mockups/cmake
Expand Down
4 changes: 2 additions & 2 deletions cplex/src/cplex.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ int (*CPXXwriteprob)(CPXCENVptr, CPXCLPptr, char const *, char const *) = NULL;
void cplex_adaptor_unload() {
if (h) {
#if defined(_WIN32)
FreeLibray(h);
FreeLibrary(h);
#elif defined(__APPLE__)
dlclose(h);
#endif
Expand Down Expand Up @@ -391,4 +391,4 @@ int (*CPXXwriteprob)(CPXCENVptr, CPXCLPptr, char const *, char const *) = NULL;
return 1;
}
}


0 comments on commit f17169f

Please sign in to comment.