]> git.lizzy.rs Git - bspwm.git/commitdiff
Fix comment
authorBastien Dejean <nihilhill@gmail.com>
Mon, 4 Jan 2016 14:21:03 +0000 (15:21 +0100)
committerBastien Dejean <nihilhill@gmail.com>
Mon, 4 Jan 2016 14:21:03 +0000 (15:21 +0100)
tests/test_window.c

index 8582c7f0ee2848f9467a7cfe6251f9b6bd67224b..74a602ddc64113fbc1d5d000e9542b384232ef85 100644 (file)
@@ -50,7 +50,7 @@ void render_text(xcb_connection_t *dpy, xcb_window_t win, int16_t x, int16_t y)
        xcb_void_cookie_t ck;
        snprintf(id, sizeof(id), "0x%X", win);
        xcb_gcontext_t gc = get_font_gc(dpy, win, "-*-fixed-medium-*-*-*-18-*-*-*-*-*-*-*");
-       /* Don't work with the _checked ! */
+       /* Doesn't work without _checked */
        ck = xcb_image_text_8_checked(dpy, strlen(id), win, gc, x, y, id);
        check_request(dpy, ck, "Can't draw text");
        xcb_free_gc(dpy, gc);