diff options
author | Mattias Andrée <m@maandree.se> | 2025-02-02 18:35:22 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-02-02 18:35:22 +0100 |
commit | ce641a14e544acd4c258da8539186616c82bc1af (patch) | |
tree | 460b88a1668b1abab0654a24f68a2d7b4e0d4dfe | |
parent | m (diff) | |
download | cg-tools-79cb34fc0a19fcc682d7bd6b9298f92a7ed3341a.tar.gz cg-tools-79cb34fc0a19fcc682d7bd6b9298f92a7ed3341a.tar.bz2 cg-tools-79cb34fc0a19fcc682d7bd6b9298f92a7ed3341a.tar.xz |
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | cg-icc.c | 6 |
2 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ ISC License -© 2016, 2018, 2019 Mattias Andrée <m@maandree.se> +© 2016, 2018, 2019, 2024, 2025 Mattias Andrée <m@maandree.se> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -824,11 +824,11 @@ start(void) uniramps.u8.red_size = uniramps.u8.green_size = uniramps.u8.blue_size = 1; for (i = 0; i < crtcs_n; i++) { if (uniramps.u8.red_size < crtc_updates[i].filter.ramps.u8.red_size) - uniramps. u8.red_size = crtc_updates[i].filter.ramps.u8.red_size; + uniramps.u8.red_size = crtc_updates[i].filter.ramps.u8.red_size; if (uniramps.u8.green_size < crtc_updates[i].filter.ramps.u8.green_size) - uniramps. u8.green_size = crtc_updates[i].filter.ramps.u8.green_size; + uniramps.u8.green_size = crtc_updates[i].filter.ramps.u8.green_size; if (uniramps.u8.blue_size < crtc_updates[i].filter.ramps.u8.blue_size) - uniramps. u8.blue_size = crtc_updates[i].filter.ramps.u8.blue_size; + uniramps.u8.blue_size = crtc_updates[i].filter.ramps.u8.blue_size; } switch (load_icc(icc_pathname, &uniramps, &unidepth)) { case 0: |