aboutsummaryrefslogtreecommitdiff
path: root/xorg-server/hw/xwin
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-02-14 16:53:15 +0000
committermarha <marha@users.sourceforge.net>2011-02-14 16:53:15 +0000
commit6c7065f8c65df08a61a1b7d37f85391ab027acd6 (patch)
treea628e6c3edb1916dc3c2c4f6dca512589c377ec5 /xorg-server/hw/xwin
parent9859910a8168b9c13e9e9952a03de91d51293484 (diff)
downloadvcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.tar.gz
vcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.tar.bz2
vcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.zip
Report XLocaleNotSupported result from X*TextPropertyToTextList()
Diffstat (limited to 'xorg-server/hw/xwin')
-rw-r--r--xorg-server/hw/xwin/winclipboardxevents.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/xorg-server/hw/xwin/winclipboardxevents.c b/xorg-server/hw/xwin/winclipboardxevents.c
index c21e7e1b5..3efda4de0 100644
--- a/xorg-server/hw/xwin/winclipboardxevents.c
+++ b/xorg-server/hw/xwin/winclipboardxevents.c
@@ -655,11 +655,14 @@ winClipboardFlushXEvents (HWND hwnd,
case XNoMemory:
ErrorF ("XNoMemory\n");
break;
+ case XLocaleNotSupported:
+ ErrorF ("XLocaleNotSupported\n");
+ break;
case XConverterNotFound:
ErrorF ("XConverterNotFound\n");
break;
default:
- ErrorF ("%d", iReturn);
+ ErrorF ("%d\n", iReturn);
break;
}
pszReturnData = (char *) malloc (1);