diff options
author | Adam Jackson <ajax@redhat.com> | 2016-06-28 15:54:43 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2016-09-02 13:41:24 -0400 |
commit | dff435568b40286df2bf7a66e870f9ae5f4eb9bd (patch) | |
tree | 9b58d26ebdd67755d13609b80dfbfcaa8cb6646a /dri3 | |
parent | 65493c0b73f6ee65b2a8fcaa4a15b0c453ff72b1 (diff) |
dri3: Don't do return client->noClientException
Hasn't been necessary since:
commit 92ed75ac59e2d3af149cddb962efd05fc8487750
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>
Diffstat (limited to 'dri3')
-rw-r--r-- | dri3/dri3_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dri3/dri3_request.c b/dri3/dri3_request.c index 35548b6d2..8c15dbe16 100644 --- a/dri3/dri3_request.c +++ b/dri3/dri3_request.c @@ -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) = { |