aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/randr/rroutput.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-07-05 13:34:26 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-07-05 13:34:26 +0200
commit381706aa279799201d5750bb971cac91e05db995 (patch)
tree13abc7de22c00d7ab9080c47df749afbe94d8f85 /nx-X11/programs/Xserver/randr/rroutput.c
parent06a97857a0380f88b691ac022fa30a05d54e43e0 (diff)
parentf6a1bda2dff0c70aa13f3cb763a9b08c4c037c53 (diff)
downloadnx-libs-381706aa279799201d5750bb971cac91e05db995.tar.gz
nx-libs-381706aa279799201d5750bb971cac91e05db995.tar.bz2
nx-libs-381706aa279799201d5750bb971cac91e05db995.zip
Merge branch 'sunweaver-pr/no-more-type-casting-in-writetoclient' into 3.6.x
Attributes GH PR #178: https://github.com/ArcticaProject/nx-libs/pull/178 Reviewed by: Vadim Troshchinskiy <vadim@qindel.com> -- Tue, 05 Jul 2016 02:37:08 -0700
Diffstat (limited to 'nx-X11/programs/Xserver/randr/rroutput.c')
-rw-r--r--nx-X11/programs/Xserver/randr/rroutput.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/nx-X11/programs/Xserver/randr/rroutput.c b/nx-X11/programs/Xserver/randr/rroutput.c
index 3a276e34a..07fda36b5 100644
--- a/nx-X11/programs/Xserver/randr/rroutput.c
+++ b/nx-X11/programs/Xserver/randr/rroutput.c
@@ -534,9 +534,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);
}
@@ -662,7 +662,7 @@ ProcRRGetOutputPrimary(ClientPtr client)
swapl(&rep.output);
}
- WriteToClient(client, sizeof(xRRGetOutputPrimaryReply), (char *) &rep);
+ WriteToClient(client, sizeof(xRRGetOutputPrimaryReply), &rep);
return Success;
}