diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-15 19:58:35 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-15 19:58:35 -0400 |
commit | c3ff775bfe4556ffbe920cbfbc860e471dfc7f07 (patch) | |
tree | 0fbeaafb2ec09955240bac3eb3a9bbe49a44f52e /src/cursor.c | |
parent | f7a9ead69089a862fbd9aab6995980d3ecd290bf (diff) |
fix gcc-normal compiler warnings, no object change
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
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); } |