summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--bin/scheme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index 2187ceb1..7ca32cc3 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -167,7 +167,7 @@ static void png(const struct Hsv *hsv, size_t len) {
     pngInt(crc);
 
     pngChunk("PLTE", 3 * len);
-    for (uint32_t i = 0; i < len; ++i) {
+    for (size_t i = 0; i < len; ++i) {
         struct Rgb rgb = toRgb(hsv[i]);
         pngWrite(&rgb, 3);
     }
@@ -179,7 +179,7 @@ static void png(const struct Hsv *hsv, size_t len) {
         enum { NONE, SUB, UP, AVERAGE, PAETH };
         data[y][0] = (y % swatchHeight) ? UP : SUB;
     }
-    for (uint32_t i = 0; i < len; ++i) {
+    for (size_t i = 0; i < len; ++i) {
         uint32_t y = swatchHeight * (i / columns);
         uint32_t x = swatchWidth * (i % columns);
         data[y][1 + x] = x ? 1 : i;
335e260e90a4e&follow=1'>Use inline style rather than <b>, <i>, <u>June McEnroe 2019-07-11Factor out clearJune McEnroe 2019-07-11Add bright option to shottyJune McEnroe 2019-07-11Output <b>, <i>, <u> in shottyJune McEnroe 2019-07-10Ignore SM and RMJune McEnroe 2019-07-09Add shotty man page and build itJune McEnroe 2019-07-09Add up -cJune McEnroe 2019-07-09Add options for default colors to shottyJune McEnroe 2019-07-08Use char literals consistentlyJune McEnroe