diff options
-rw-r--r-- | src/gamma-helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gamma-helper.c b/src/gamma-helper.c index 5c538e7..dd4e027 100644 --- a/src/gamma-helper.c +++ b/src/gamma-helper.c @@ -89,12 +89,12 @@ static void translate_from_64(signed depth, size_t n, libgamma_gamma_ramps_any_t { case 16: for (i = 0; i < n; i++) - out.bits16.red[i] = (uint64_t)(in[i] / 0x0001000100010001ULL); + out.bits16.red[i] = (uint16_t)(in[i] / 0x0001000100010001ULL); break; case 32: for (i = 0; i < n; i++) - out.bits32.red[i] = (uint64_t)(in[i] / 0x0000000100000001ULL); + out.bits32.red[i] = (uint32_t)(in[i] / 0x0000000100000001ULL); break; case 64: |