diff options
Diffstat (limited to 'x11.c')
| -rw-r--r-- | x11.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -99,7 +99,7 @@ cairo_t *window_get_context(Window *win) double window_get_scale(Window *win) { - return MAX(1, win->dpi/96.); + return MAX(1, win->dpi/96.); } void window_paint_surface(Window *win, cairo_surface_t *surface, int width, int height) @@ -121,9 +121,9 @@ void window_destroy(Window *win) { cairo_destroy(win->cr); cairo_surface_destroy(win->surface); - xcb_xrm_database_free(win->database); + xcb_xrm_database_free(win->database); xcb_disconnect(win->connection); g_free(win); } -// vim: set ts=4 sw=4 et +// vim: ts=4 sw=4 et |
