Skip to content

Commit

Permalink
fix removing const from _src rather than _dest
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilDohne committed Oct 22, 2024
1 parent 049d95e commit 2c4608d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions blosc/shuffle.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 2c4608d

Please sign in to comment.