diff options
Diffstat (limited to 'src/cursor.c')
-rw-r--r-- | src/cursor.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cursor.c b/src/cursor.c index bbe05f0..cfe0a09 100644 --- a/src/cursor.c +++ b/src/cursor.c @@ -167,5 +167,6 @@ NewBitmapCursor(Cursor *cp, char *source, char *mask) return; } *cp = XCreatePixmapCursor(dpy, spm, mpm, &Scr->PointerForeground, - &Scr->PointerBackground, hotx,hoty); + &Scr->PointerBackground, + (unsigned)hotx, (unsigned)hoty); } |