aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/lib/X11/Luv.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2016-02-06 13:32:44 -0800
committerUlrich Sibiller <uli42@gmx.de>2016-10-19 21:40:30 +0200
commit8d8d5cfd8c4f3d25c85d6ed60298f3aa917651eb (patch)
treecd3162f71013a76ad3d655ea91ef5dfa92bbbab2 /nx-X11/lib/X11/Luv.c
parent327d2cc6047683abb36cab25a90633c7b8d9b036 (diff)
downloadnx-libs-8d8d5cfd8c4f3d25c85d6ed60298f3aa917651eb.tar.gz
nx-libs-8d8d5cfd8c4f3d25c85d6ed60298f3aa917651eb.tar.bz2
nx-libs-8d8d5cfd8c4f3d25c85d6ed60298f3aa917651eb.zip
xcms: use unsigned indexes when looping through unsigned values
Clears many gcc warnings of the form: uvY.c: In function ‘XcmsCIEuvYToCIEXYZ’: uvY.c:263:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for (i = 0; i < nColors; i++, pColor++) { ^ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Backported-to-NX-by: Ulrich Sibiller <uli42@gmx.de>
Diffstat (limited to 'nx-X11/lib/X11/Luv.c')
-rw-r--r--nx-X11/lib/X11/Luv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nx-X11/lib/X11/Luv.c b/nx-X11/lib/X11/Luv.c
index 8af5ee98b..2bce977ea 100644
--- a/nx-X11/lib/X11/Luv.c
+++ b/nx-X11/lib/X11/Luv.c
@@ -251,7 +251,7 @@ XcmsCIELuvToCIEuvY(
XcmsColor whitePt;
XcmsCIEuvY uvY_return;
XcmsFloat tmpVal;
- register int i;
+ unsigned int i;
/*
* Check arguments
@@ -343,7 +343,7 @@ XcmsCIEuvYToCIELuv(
XcmsColor whitePt;
XcmsCIELuv Luv_return;
XcmsFloat tmpVal;
- register int i;
+ unsigned int i;
/*
* Check arguments