diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-29 21:23:55 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2017-12-29 21:23:55 +0100 |
commit | 6ed1884c84f470707ed5e6b56a92d86b51034625 (patch) | |
tree | 9842be5bb2107e638fce5e2a2f5f2318df19f453 /xwayland | |
parent | ec952931a18cc21c99f20424b190590f9c769ae1 (diff) |
xwm_get_render_format: fix typo in error message
Diffstat (limited to 'xwayland')
-rw-r--r-- | xwayland/xwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c index 470c4e63..53aac6a4 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -1255,7 +1255,7 @@ static void xwm_get_render_format(struct wlr_xwm *xwm) { xcb_render_query_pict_formats_reply_t *reply = xcb_render_query_pict_formats_reply(xwm->xcb_conn, cookie, NULL); if (!reply) { - wlr_log(L_ERROR, "Did not get any reply from xcb_rrender_query_pict_formats"); + wlr_log(L_ERROR, "Did not get any reply from xcb_render_query_pict_formats"); return; } xcb_render_pictforminfo_iterator_t iter = |