From b89dadec406e969023669b1c4430114ac983aa44 Mon Sep 17 00:00:00 2001 From: Yuxuan Shui Date: Mon, 26 Nov 2018 23:56:36 +0000 Subject: [PATCH] Fix a wrong type Signed-off-by: Yuxuan Shui --- src/compton.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compton.c b/src/compton.c index 9b73ab8..bcc8759 100644 --- a/src/compton.c +++ b/src/compton.c @@ -1466,7 +1466,7 @@ xr_blur_dst(session_t *ps, xcb_render_picture_t tgt_buffer, xrfilter_reset(ps, src_pict); { - xcb_xfixes_region_t tmp = src_pict; + xcb_render_picture_t tmp = src_pict; src_pict = dst_pict; dst_pict = tmp; }