about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--client.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/client.c b/client.c
index cb477e1..a1c7ef6 100644
--- a/client.c
+++ b/client.c
@@ -682,17 +682,17 @@ client_placecalc(struct client_ctx *cc)
 		if (cc->size->y > 0)
 			cc->geom.y = MIN(cc->size->y, yslack);
 	} else {
-		XineramaScreenInfo	*info;
+		XineramaScreenInfo	*xine;
 		int			 xmouse, ymouse, xorig, yorig;
 		int			 xmax, ymax;
 
 		xu_ptr_getpos(sc->rootwin, &xmouse, &ymouse);
-		info = screen_find_xinerama(sc, xmouse, ymouse);
-		if (info) {
-			xorig = info->x_org;
-			yorig = info->y_org;
-			xmax = xorig + info->width;
-			ymax = yorig + info->height;
+		xine = screen_find_xinerama(sc, xmouse, ymouse);
+		if (xine) {
+			xorig = xine->x_org;
+			yorig = xine->y_org;
+			xmax = xorig + xine->width;
+			ymax = yorig + xine->height;
 		} else {
 			xorig = yorig = 0;
 			xmax = sc->view.w;