diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-10-18 10:52:49 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-10-18 10:52:49 -0700 |
commit | edf52212a09bd80b52dc9932b5ca19e20dfcaa2b (patch) | |
tree | d48b1bc9e03e27372570ea9d2b4d6c9f44abb660 /src/cursor.c | |
parent | bbf3c582c97af3abfaf81e3ca63646d59fe6e28a (diff) |
Fix some clang integer sign/size mismatch warnings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/cursor.c')
-rw-r--r-- | src/cursor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cursor.c b/src/cursor.c index 92bd417..23c3283 100644 --- a/src/cursor.c +++ b/src/cursor.c @@ -226,7 +226,7 @@ static Bool _XcursorHeckbertMedianCut (const XcursorImage *image, XcursorCoreCursor *core) { XImage *src_image = core->src_image, *msk_image = core->msk_image; - int npixels = image->width * image->height; + unsigned int npixels = image->width * image->height; int ncolors; int n; XcursorPixel *po, *pn, *pc; @@ -395,7 +395,7 @@ _XcursorFloydSteinberg (const XcursorImage *image, XcursorCoreCursor *core) int *aPicture, *iPicture, *aP, *iP; XcursorPixel *pixel, p; int aR, iR, aA, iA; - int npixels = image->width * image->height; + unsigned int npixels = image->width * image->height; int n; int right = 1; int belowLeft = image->width - 1; |