diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2016-11-03 13:11:41 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2016-11-03 13:11:41 +0000 |
commit | c53bb27b95015d91a5e3030722bb16c4dcbdc633 (patch) | |
tree | 096b6610315178c89187acb25a9cb486e400140b /lib/xcb-util-cursor/cursor/load_cursor.c | |
parent | dc97aec543663c97e7b29cc96e140da9200fab3a (diff) |
Update to xcb-util-cursor to 0.1.3.
This will give applications using this library the same X cursor search path
as the ones that use the legacy libXcursor.
Diffstat (limited to 'lib/xcb-util-cursor/cursor/load_cursor.c')
-rw-r--r-- | lib/xcb-util-cursor/cursor/load_cursor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xcb-util-cursor/cursor/load_cursor.c b/lib/xcb-util-cursor/cursor/load_cursor.c index 53da00930..e82fc63e9 100644 --- a/lib/xcb-util-cursor/cursor/load_cursor.c +++ b/lib/xcb-util-cursor/cursor/load_cursor.c @@ -48,7 +48,7 @@ static const char *cursor_path(struct xcb_cursor_context_t *c) { if (c->path == NULL) { c->path = getenv("XCURSOR_PATH"); if (c->path == NULL) - c->path = "~/.icons:/usr/share/icons:/usr/share/pixmaps:/usr/X11R6/lib/X11/icons"; + c->path = XCURSORPATH; } return c->path; } |