aboutsummaryrefslogtreecommitdiff
path: root/libX11/src/GetImage.c
diff options
context:
space:
mode:
Diffstat (limited to 'libX11/src/GetImage.c')
-rw-r--r--libX11/src/GetImage.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libX11/src/GetImage.c b/libX11/src/GetImage.c
index 4a376c67c..99c8d6e91 100644
--- a/libX11/src/GetImage.c
+++ b/libX11/src/GetImage.c
@@ -73,14 +73,14 @@ XImage *XGetImage (
req->height = height;
req->planeMask = plane_mask;
req->format = format;
-
+
if (_XReply (dpy, (xReply *) &rep, 0, xFalse) == 0 ||
rep.length == 0) {
UnlockDisplay(dpy);
SyncHandle();
return (XImage *)NULL;
}
-
+
nbytes = (long)rep.length << 2;
data = (char *) Xmalloc((unsigned) nbytes);
if (! data) {
@@ -117,15 +117,15 @@ XImage *XGetSubImage(
unsigned long plane_mask,
int format, /* either XYPixmap or ZPixmap */
XImage *dest_image,
- int dest_x,
+ int dest_x,
int dest_y)
{
XImage *temp_image;
- temp_image = XGetImage(dpy, d, x, y, width, height,
+ temp_image = XGetImage(dpy, d, x, y, width, height,
plane_mask, format);
if (!temp_image)
return (XImage *)NULL;
_XSetImage(temp_image, dest_image, dest_x, dest_y);
XDestroyImage(temp_image);
return (dest_image);
-}
+}