diff options
Diffstat (limited to 'randr/rroutput.c')
-rw-r--r-- | randr/rroutput.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/randr/rroutput.c b/randr/rroutput.c index fbd0e32b3..fd03aab66 100644 --- a/randr/rroutput.c +++ b/randr/rroutput.c @@ -489,9 +489,9 @@ ProcRRGetOutputInfo(ClientPtr client) swaps(&rep.nClones); swaps(&rep.nameLength); } - WriteToClient(client, sizeof(xRRGetOutputInfoReply), (char *) &rep); + WriteToClient(client, sizeof(xRRGetOutputInfoReply), &rep); if (extraLen) { - WriteToClient(client, extraLen, (char *) extra); + WriteToClient(client, extraLen, extra); free(extra); } |