summaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMichel Dänzer <mdaenzer@redhat.com>2021-12-14 18:33:55 +0100
committerMichel Dänzer <michel@daenzer.net>2021-12-17 16:22:07 +0000
commitcbe15842f5db0670c30630be18f9d41e3614b3d7 (patch)
tree367b7a67b60a0be6526b85fabb381c4dfcbe96ff /hw
parent32e89ebaa96a7190734e8786e186c06b942ea631 (diff)
Fix spelling of Xwayland
There were just 3 outliers, let's try to prevent them from spreading.
Diffstat (limited to 'hw')
-rw-r--r--hw/xwayland/xwayland-screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xwayland/xwayland-screen.c b/hw/xwayland/xwayland-screen.c
index b249dbb08..5c8b388f0 100644
--- a/hw/xwayland/xwayland-screen.c
+++ b/hw/xwayland/xwayland-screen.c
@@ -517,13 +517,13 @@ xwl_dispatch_events (struct xwl_screen *xwl_screen)
pollout:
ready = xwl_display_pollout(xwl_screen, 5);
if (ready == -1 && errno != EINTR)
- xwl_give_up("error polling on XWayland fd: %s\n", strerror(errno));
+ xwl_give_up("error polling on Xwayland fd: %s\n", strerror(errno));
if (ready > 0)
ret = wl_display_flush(xwl_screen->display);
if (ret == -1 && errno != EAGAIN)
- xwl_give_up("failed to write to XWayland fd: %s\n", strerror(errno));
+ xwl_give_up("failed to write to Xwayland fd: %s\n", strerror(errno));
xwl_screen->wait_flush = (ready == 0 || ready == -1 || ret == -1);
}