Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix missing cast to lvalue type; fixes OS X CI failure
  • Loading branch information
choikwa committed Sep 2, 2016
commit 14f441fb5ad24b2ef3e6e087fd08970e19bc89f7
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ BOOL CreateThreadTest()
LPSECURITY_ATTRIBUTES lpThreadAttributes = NULL;
DWORD dwStackSize = 0;
LPTHREAD_START_ROUTINE lpStartAddress = &CreateThreadTestThread;
LPVOID lpParameter = lpStartAddress;
LPVOID lpParameter = (LPVOID)lpStartAddress;
DWORD dwCreationFlags = 0; /* run immediately */
DWORD dwThreadId = 0;

Expand Down