mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
winex11.drv: Remove unneeded address-of operator from function name.
This commit is contained in:
parent
094dd38b00
commit
42df50ab66
1 changed files with 1 additions and 1 deletions
|
@ -2574,7 +2574,7 @@ int CDECL X11DRV_AcquireClipboard(HWND hWndClipWindow)
|
|||
else
|
||||
{
|
||||
HANDLE event = CreateEventW(NULL, FALSE, FALSE, NULL);
|
||||
selectionThread = CreateThread(NULL, 0, &selection_thread_proc, event, 0, NULL);
|
||||
selectionThread = CreateThread(NULL, 0, selection_thread_proc, event, 0, NULL);
|
||||
|
||||
if (!selectionThread)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue