Xi: unify ErrorFs. Prefix all with [Xi].
This commit is contained in:
parent
340911d724
commit
55fd50273e
|
@ -110,7 +110,7 @@ ProcXChangeWindowAccess(ClientPtr client)
|
||||||
(DeviceIntPtr*)xalloc(stuff->npermit * sizeof(DeviceIntPtr));
|
(DeviceIntPtr*)xalloc(stuff->npermit * sizeof(DeviceIntPtr));
|
||||||
if (!perm_devices)
|
if (!perm_devices)
|
||||||
{
|
{
|
||||||
ErrorF("ProcXChangeWindowAccess: alloc failure.\n");
|
ErrorF("[Xi] ProcXChangeWindowAccess: alloc failure.\n");
|
||||||
SendErrorToClient(client, IReqCode, X_ChangeWindowAccess, 0,
|
SendErrorToClient(client, IReqCode, X_ChangeWindowAccess, 0,
|
||||||
BadImplementation);
|
BadImplementation);
|
||||||
return Success;
|
return Success;
|
||||||
|
@ -136,7 +136,7 @@ ProcXChangeWindowAccess(ClientPtr client)
|
||||||
(DeviceIntPtr*)xalloc(stuff->ndeny * sizeof(DeviceIntPtr));
|
(DeviceIntPtr*)xalloc(stuff->ndeny * sizeof(DeviceIntPtr));
|
||||||
if (!deny_devices)
|
if (!deny_devices)
|
||||||
{
|
{
|
||||||
ErrorF("ProcXChangeWindowAccecss: alloc failure.\n");
|
ErrorF("[Xi] ProcXChangeWindowAccecss: alloc failure.\n");
|
||||||
SendErrorToClient(client, IReqCode, X_ChangeWindowAccess, 0,
|
SendErrorToClient(client, IReqCode, X_ChangeWindowAccess, 0,
|
||||||
BadImplementation);
|
BadImplementation);
|
||||||
|
|
||||||
|
|
|
@ -891,7 +891,7 @@ FixExtensionEvents(ExtensionEntry * extEntry)
|
||||||
{
|
{
|
||||||
/* This should never happen, but if it does, hide under the
|
/* This should never happen, but if it does, hide under the
|
||||||
* bed and cry for help. */
|
* bed and cry for help. */
|
||||||
ErrorF("DeviceButtonMotionMask != ButtonMotionMask. Trouble!\n");
|
ErrorF("[Xi] DeviceButtonMotionMask != ButtonMotionMask. Trouble!\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
DeviceFocusChangeMask = GetNextExtEventMask();
|
DeviceFocusChangeMask = GetNextExtEventMask();
|
||||||
|
|
|
@ -99,7 +99,7 @@ ProcXQueryWindowAccess(ClientPtr client)
|
||||||
deviceids = (XID*)xalloc((nperm + ndeny) * sizeof(XID));
|
deviceids = (XID*)xalloc((nperm + ndeny) * sizeof(XID));
|
||||||
if (!deviceids)
|
if (!deviceids)
|
||||||
{
|
{
|
||||||
ErrorF("ProcXQueryWindowAccess: xalloc failure.\n");
|
ErrorF("[Xi] ProcXQueryWindowAccess: xalloc failure.\n");
|
||||||
SendErrorToClient(client, IReqCode, X_QueryWindowAccess,
|
SendErrorToClient(client, IReqCode, X_QueryWindowAccess,
|
||||||
0, BadImplementation);
|
0, BadImplementation);
|
||||||
return Success;
|
return Success;
|
||||||
|
|
Loading…
Reference in New Issue