From 52e7e4e57ad40c334761d6ecc0ec45fa00b39498 Mon Sep 17 00:00:00 2001 From: EmilDohne <86836589+EmilDohne@users.noreply.github.com> Date: Tue, 22 Oct 2024 10:58:03 +0200 Subject: [PATCH] fix removing const from _src rather than _dest --- blosc/shuffle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blosc/shuffle.h b/blosc/shuffle.h index 3573ca8a..a2a1a3b9 100644 --- a/blosc/shuffle.h +++ b/blosc/shuffle.h @@ -35,7 +35,7 @@ */ BLOSC_NO_EXPORT void shuffle(const int32_t bytesoftype, const int32_t blocksize, - uint8_t* _src, const uint8_t* _dest); + const uint8_t* _src, uint8_t* _dest); BLOSC_NO_EXPORT int32_t bitshuffle(const int32_t bytesoftype, const int32_t blocksize, @@ -53,7 +53,7 @@ BLOSC_NO_EXPORT int32_t */ BLOSC_NO_EXPORT void unshuffle(const int32_t bytesoftype, const int32_t blocksize, - uint8_t* _src, const uint8_t* _dest); + const uint8_t* _src, uint8_t* _dest); BLOSC_NO_EXPORT int32_t