Skip to content

Commit

Permalink
Merge pull request #111 from JuliaLinearAlgebra/vs/windows
Browse files Browse the repository at this point in the history
Fix windows compile issue
  • Loading branch information
ViralBShah authored Mar 27, 2023
2 parents 918a7cc + c67f50d commit 9a8742e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libblastrampoline.c
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ LBT_DLLEXPORT int32_t lbt_forward(const char * libname, int32_t clear, int32_t v
*/
#ifdef _OS_WINDOWS_
void * _win32_self_handle;
BOOL APIENTRY DllMain(HINSTANCE hModule, DWORD code, void *) {
BOOL APIENTRY DllMain(HINSTANCE hModule, DWORD code, void *reserved) {
if (code == DLL_PROCESS_ATTACH) {
_win32_self_handle = (void *)hModule;
}
Expand Down

0 comments on commit 9a8742e

Please sign in to comment.