Module: wine Branch: master Commit: 42df50ab662b50fbc3c2d9b3a0850be1ea417918 URL: http://source.winehq.org/git/wine.git/?a=commit;h=42df50ab662b50fbc3c2d9b3a0...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Mon Aug 29 22:36:29 2011 +0100
winex11.drv: Remove unneeded address-of operator from function name.
---
dlls/winex11.drv/clipboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/clipboard.c b/dlls/winex11.drv/clipboard.c index cda8f9e..caf2406 100644 --- a/dlls/winex11.drv/clipboard.c +++ b/dlls/winex11.drv/clipboard.c @@ -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) {