diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2013-04-03 16:27:45 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2013-05-02 15:43:22 +0100 |
commit | b284666f09b77f9c2f048fee22015a353152a57f (patch) | |
tree | 2a7c361f9266b611ce88631e1c30a89d64246e28 /hw/xwin | |
parent | d414a09bb7f8d4440b36cbc6f0b4ca0eaefe5cbf (diff) |
hw/xwin: Fix unused-but-set-variable warning in winClipboardProc()
/jhbuild/checkout/xorg/xserver/hw/xwin/winclipboardthread.c: In function ‘winClipboardProc’:
/jhbuild/checkout/xorg/xserver/hw/xwin/winclipboardthread.c:88:25: error: variable ‘atomClipboardManager’ set but not used [-Werror=unused-but-set-variable]
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Colin Harrison <colin.harrison@virgin.net>
Diffstat (limited to 'hw/xwin')
-rw-r--r-- | hw/xwin/winclipboardthread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/xwin/winclipboardthread.c b/hw/xwin/winclipboardthread.c index c8508a9b8..6da9f3b72 100644 --- a/hw/xwin/winclipboardthread.c +++ b/hw/xwin/winclipboardthread.c @@ -83,7 +83,7 @@ static int void * winClipboardProc(void *pvNotUsed) { - Atom atomClipboard, atomClipboardManager; + Atom atomClipboard; int iReturn; HWND hwnd = NULL; int iConnectionNumber = 0; @@ -206,9 +206,8 @@ winClipboardProc(void *pvNotUsed) iMaxDescriptor = iConnectionNumber + 1; #endif - /* Create atoms */ + /* Create atom */ atomClipboard = XInternAtom(pDisplay, "CLIPBOARD", False); - atomClipboardManager = XInternAtom(pDisplay, "CLIPBOARD_MANAGER", False); /* Create a messaging window */ iWindow = XCreateSimpleWindow(pDisplay, |