diff options
Diffstat (limited to 'include/dix.h')
-rw-r--r-- | include/dix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dix.h b/include/dix.h index 3d8b0e575..5bc1daa87 100644 --- a/include/dix.h +++ b/include/dix.h @@ -102,12 +102,12 @@ SOFTWARE. if ((pClient)->swapped) \ (*ReplySwapVector[((xReq *)(pClient)->requestBuffer)->reqType]) \ (pClient, (int)(size), pReply); \ - else (void) WriteToClient(pClient, (int)(size), (char *)(pReply)); } + else WriteToClient(pClient, (int)(size), (pReply)); } #define WriteSwappedDataToClient(pClient, size, pbuf) \ if ((pClient)->swapped) \ (*(pClient)->pSwapReplyFunc)(pClient, (int)(size), pbuf); \ - else (void) WriteToClient (pClient, (int)(size), (char *)(pbuf)); + else WriteToClient(pClient, (int)(size), (pbuf)); typedef struct _TimeStamp *TimeStampPtr; |