Re: [PATCH xserver 6/6] xwayland: Fix a 32-bit build warning.

2018-05-08 Thread Adam Jackson
On Mon, 2018-05-07 at 16:46 -0700, Eric Anholt wrote:
> Signed-off-by: Eric Anholt 

Merged, thanks:

remote: I: patch #221286 updated using rev 
e1ccd0fa0e1081edf8a2c69ce6e8e3f67a4aecba.
remote: I: patch #221285 updated using rev 
4ec02b573ef2424965d7ce2d33d150ddb92ec544.
remote: I: patch #221288 updated using rev 
5e86484a183f051d7a8a67ea13c23a3d6e69e76b.
remote: I: patch #221290 updated using rev 
4c754b01fafc4b042d9918c05a71157f6fa6392a.
remote: I: patch #221287 updated using rev 
ef95331603ff31d3643360c399b3865db5b0b97d.
remote: I: patch #221289 updated using rev 
b23a0e4ded62500f2c248f23962ff5ac718467e6.
remote: I: 6 patch(es) updated to state Accepted.
To ssh://git.freedesktop.org/git/xorg/xserver
   cf838f5ca8..b23a0e4ded  master -> master

- ajax
___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: https://lists.x.org/mailman/listinfo/xorg-devel

[PATCH xserver 6/6] xwayland: Fix a 32-bit build warning.

2018-05-07 Thread Eric Anholt
Signed-off-by: Eric Anholt 
---
 hw/xwayland/xwayland.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/xwayland/xwayland.c b/hw/xwayland/xwayland.c
index f7e2ce931258..87d9ba22c22f 100644
--- a/hw/xwayland/xwayland.c
+++ b/hw/xwayland/xwayland.c
@@ -975,7 +975,7 @@ xwl_screen_init(ScreenPtr pScreen, int argc, char **argv)
 else if (strcmp(argv[i], "-listen") == 0) {
 if (xwl_screen->listen_fd_count ==
 ARRAY_SIZE(xwl_screen->listen_fds))
-FatalError("Too many -listen arguments given, max is %ld\n",
+FatalError("Too many -listen arguments given, max is %zu\n",
ARRAY_SIZE(xwl_screen->listen_fds));
 
 xwl_screen->listen_fds[xwl_screen->listen_fd_count++] =
-- 
2.17.0

___
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: https://lists.x.org/mailman/listinfo/xorg-devel