winex11.drv: Remove unneeded address-of operator from function name.

This commit is contained in:
Andrew Talbot 2011-08-29 22:36:29 +01:00 committed by Alexandre Julliard
parent 094dd38b00
commit 42df50ab66
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{