aboutsummaryrefslogtreecommitdiff
path: root/x11.c
diff options
context:
space:
mode:
Diffstat (limited to 'x11.c')
-rw-r--r--x11.c6
1 files changed, 3 insertions, 3 deletions
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