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
|
@ -230,7 +230,7 @@ proc_dri3_buffer_from_pixmap(ClientPtr client)
|
||||||
|
|
||||||
WriteToClient(client, sizeof(rep), &rep);
|
WriteToClient(client, sizeof(rep), &rep);
|
||||||
|
|
||||||
return client->noClientException;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
@ -296,7 +296,7 @@ proc_dri3_fd_from_fence(ClientPtr client)
|
||||||
|
|
||||||
WriteToClient(client, sizeof(rep), &rep);
|
WriteToClient(client, sizeof(rep), &rep);
|
||||||
|
|
||||||
return client->noClientException;
|
return Success;
|
||||||
}
|
}
|
||||||
|
|
||||||
int (*proc_dri3_vector[DRI3NumberRequests]) (ClientPtr) = {
|
int (*proc_dri3_vector[DRI3NumberRequests]) (ClientPtr) = {
|
||||||
|
|
Loading…
Reference in New Issue