From 5fb6ee1383ff21cfc6c46cc0514c6c86dd297c03 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Tue, 21 Jun 2016 22:09:29 +0200 Subject: [PATCH] Fix rootwindow set at wrong pointer level. --- source/x11-helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/x11-helper.c b/source/x11-helper.c index 29c5e48c..55ebd49e 100644 --- a/source/x11-helper.c +++ b/source/x11-helper.c @@ -107,7 +107,7 @@ static xcb_pixmap_t get_root_pixmap ( xcb_connection_t *c, rootpixmap = (xcb_pixmap_t *) xcb_get_property_value ( reply ); } else { - *rootpixmap = XCB_NONE; + rootpixmap = XCB_NONE; } free ( reply );