Skip to content

Commit

Permalink
Fix windows compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored Mar 27, 2023
1 parent 918a7cc commit c67f50d
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 c67f50d

Please sign in to comment.