From 31bff49ef9c5e9ee6079e369e3b4d90c447f8d0b Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Thu, 2 Nov 2023 21:09:48 +0100 Subject: Fix vim modelines --- x11.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'x11.c') diff --git a/x11.c b/x11.c index f95d4f5..26ae535 100644 --- a/x11.c +++ b/x11.c @@ -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 -- cgit v1.2.3