Fix signedness of x properties

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2018-11-01 11:12:20 +00:00
parent 32e0b45255
commit 4f4201976d
5 changed files with 24 additions and 29 deletions

View File

@ -912,7 +912,7 @@ get_root_tile(session_t *ps) {
get_atom(ps, background_props_str[p]),
1L, XCB_ATOM_PIXMAP, 32);
if (prop.nitems) {
pixmap = *prop.data.p32;
pixmap = *prop.p32;
fill = false;
free_winprop(&prop);
break;