mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 04:40:02 +01:00
dri3: Don't do return client->noClientException
Hasn't been necessary since:
commit 92ed75ac59
Author: Jamey Sharp <jamey@minilop.net>
Date: Mon May 10 20:22:05 2010 -0700
Eliminate boilerplate around client->noClientException.
Reviewed-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
65493c0b73
commit
dff435568b
1 changed files with 2 additions and 2 deletions
|
|
@ -230,7 +230,7 @@ proc_dri3_buffer_from_pixmap(ClientPtr client)
|
|||
|
||||
WriteToClient(client, sizeof(rep), &rep);
|
||||
|
||||
return client->noClientException;
|
||||
return Success;
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
@ -296,7 +296,7 @@ proc_dri3_fd_from_fence(ClientPtr client)
|
|||
|
||||
WriteToClient(client, sizeof(rep), &rep);
|
||||
|
||||
return client->noClientException;
|
||||
return Success;
|
||||
}
|
||||
|
||||
int (*proc_dri3_vector[DRI3NumberRequests]) (ClientPtr) = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue