Index: uspace/lib/display/private/params.h
===================================================================
--- uspace/lib/display/private/params.h	(revision 7bb45e33b98aa347a21453b63e27f209dc3ab3d9)
+++ uspace/lib/display/private/params.h	(revision 7bb45e33b98aa347a21453b63e27f209dc3ab3d9)
@@ -0,0 +1,51 @@
+/*
+ * Copyright (c) 2020 Jiri Svoboda
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * - Redistributions of source code must retain the above copyright
+ *   notice, this list of conditions and the following disclaimer.
+ * - Redistributions in binary form must reproduce the above copyright
+ *   notice, this list of conditions and the following disclaimer in the
+ *   documentation and/or other materials provided with the distribution.
+ * - The name of the author may not be used to endorse or promote products
+ *   derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/** @addtogroup libdisplay
+ * @{
+ */
+/** @file
+ */
+
+#ifndef _LIBDISPLAY_PRIVATE_PARAMS_H_
+#define _LIBDISPLAY_PRIVATE_PARAMS_H_
+
+#include <gfx/coord.h>
+
+/** Window resize arguments. */
+typedef struct {
+	/** Offset */
+	gfx_coord2_t offs;
+	/** New bounding rectangle */
+	gfx_rect_t nrect;
+} display_wnd_resize_t;
+
+#endif
+
+/** @}
+ */
Index: uspace/lib/display/src/disp_srv.c
===================================================================
--- uspace/lib/display/src/disp_srv.c	(revision a8eed5fbd3a0a8c9b9d42cf67e4146914e1b1be4)
+++ uspace/lib/display/src/disp_srv.c	(revision 7bb45e33b98aa347a21453b63e27f209dc3ab3d9)
@@ -113,5 +113,5 @@
 	sysarg_t wnd_id;
 	ipc_call_t call;
-	display_wnd_move_t wmove;
+	display_wnd_resize_t wresize;
 	size_t size;
 	errno_t rc;
@@ -125,5 +125,5 @@
 	}
 
-	if (size != sizeof(display_wnd_move_t)) {
+	if (size != sizeof(display_wnd_resize_t)) {
 		async_answer_0(&call, EINVAL);
 		async_answer_0(icall, EINVAL);
@@ -131,5 +131,5 @@
 	}
 
-	rc = async_data_write_finalize(&call, &wmove, size);
+	rc = async_data_write_finalize(&call, &wresize, size);
 	if (rc != EOK) {
 		async_answer_0(&call, rc);
@@ -143,6 +143,6 @@
 	}
 
-	rc = srv->ops->window_resize(srv->arg, wnd_id, &wmove.offs,
-	    &wmove.nrect);
+	rc = srv->ops->window_resize(srv->arg, wnd_id, &wresize.offs,
+	    &wresize.nrect);
 	async_answer_0(icall, rc);
 }
Index: uspace/lib/display/src/display.c
===================================================================
--- uspace/lib/display/src/display.c	(revision a8eed5fbd3a0a8c9b9d42cf67e4146914e1b1be4)
+++ uspace/lib/display/src/display.c	(revision 7bb45e33b98aa347a21453b63e27f209dc3ab3d9)
@@ -292,13 +292,13 @@
 	aid_t req;
 	ipc_call_t answer;
-	display_wnd_move_t wmove;
-	errno_t rc;
-
-	wmove.offs = *offs;
-	wmove.nrect = *nrect;
+	display_wnd_resize_t wresize;
+	errno_t rc;
+
+	wresize.offs = *offs;
+	wresize.nrect = *nrect;
 
 	exch = async_exchange_begin(window->display->sess);
 	req = async_send_1(exch, DISPLAY_WINDOW_RESIZE, window->id, &answer);
-	rc = async_data_write_start(exch, &wmove, sizeof (display_wnd_move_t));
+	rc = async_data_write_start(exch, &wresize, sizeof (display_wnd_resize_t));
 	async_exchange_end(exch);
 	if (rc != EOK) {
