diff options
author | marha <marha@users.sourceforge.net> | 2011-02-14 16:53:15 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-14 16:53:15 +0000 |
commit | 6c7065f8c65df08a61a1b7d37f85391ab027acd6 (patch) | |
tree | a628e6c3edb1916dc3c2c4f6dca512589c377ec5 /xorg-server | |
parent | 9859910a8168b9c13e9e9952a03de91d51293484 (diff) | |
download | vcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.tar.gz vcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.tar.bz2 vcxsrv-6c7065f8c65df08a61a1b7d37f85391ab027acd6.zip |
Report XLocaleNotSupported result from X*TextPropertyToTextList()
Diffstat (limited to 'xorg-server')
-rw-r--r-- | xorg-server/hw/xwin/winclipboardxevents.c | 5 |
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);
|