Skip to content

Commit

Permalink
Fix variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Sep 9, 2024
1 parent 6a6d279 commit 08248d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMake/LoadLibraryTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int main(int argc, const char **argv)
printf("LoadLibrary of %s failed\n", argv[1]);
return 1;
}
Bool flr = FreeLibrary(linst);
BOOL flr = FreeLibrary(linst);
if (!flr) {
printf("FreeLibrary failed for %s\n", argv[1]);
return 1;
Expand Down

0 comments on commit 08248d2

Please sign in to comment.