summary refs log tree commit diff
path: root/bin/scheme.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-04-16 22:37:02 -0400
committerJune McEnroe <june@causal.agency>2018-04-16 22:37:19 -0400
commitdcfce59492fb3003a61e161c2bbc32e2072c2ee4 (patch)
treeb0b96227a7a45821b53eac8edcdaf161d169690c /bin/scheme.c
parentAdd 0 bind to brot (diff)
downloadsrc-dcfce59492fb3003a61e161c2bbc32e2072c2ee4.tar.gz
src-dcfce59492fb3003a61e161c2bbc32e2072c2ee4.zip
Always hexadecimal in uppercase
I still haven't been able to actually test scheme's Linux console
output...
Diffstat (limited to 'bin/scheme.c')
-rw-r--r--bin/scheme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/scheme.c b/bin/scheme.c
index 162192fc..6fa52de3 100644
--- a/bin/scheme.c
+++ b/bin/scheme.c
@@ -121,7 +121,7 @@ static struct Rgb toRgb(struct Hsv hsv) {
 static void hex(const struct Hsv *hsv, size_t len) {
     for (size_t i = 0; i < len; ++i) {
         struct Rgb rgb = toRgb(hsv[i]);
-        printf("%02x%02x%02x\n", rgb.r, rgb.g, rgb.b);
+        printf("%02X%02X%02X\n", rgb.r, rgb.g, rgb.b);
     }
 }
 
@@ -129,7 +129,7 @@ static void linux(const struct Hsv *hsv, size_t len) {
     if (len > 16) len = 16;
     for (size_t i = 0; i < len; ++i) {
         struct Rgb rgb = toRgb(hsv[i]);
-        printf("\x1B]P%zx%02x%02x%02x", i, rgb.r, rgb.g, rgb.b);
+        printf("\x1B]P%zX%02X%02X%02X", i, rgb.r, rgb.g, rgb.b);
     }
 }