Commit 59015c11 authored by Paul B Mahol's avatar Paul B Mahol

exr: constify s in rle_uncompress()

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent a3d89052
......@@ -188,7 +188,7 @@ static void reorder_pixels(uint8_t *src, uint8_t *dst, int size)
static int rle_uncompress(const uint8_t *src, int ssize, uint8_t *dst, int dsize)
{
int8_t *d = (int8_t *)dst;
int8_t *s = (int8_t *)src;
const int8_t *s = (const int8_t *)src;
int8_t *dend = d + dsize;
int count;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment