From baa04d7ac9e064099507a57f553a9009bbe70f9a Mon Sep 17 00:00:00 2001 From: Marta Iborra Date: Thu, 21 Dec 2023 11:20:35 +0100 Subject: [PATCH] Change reallof by realloc --- blosc/b2nd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blosc/b2nd.c b/blosc/b2nd.c index 74e977c3..767a16fb 100644 --- a/blosc/b2nd.c +++ b/blosc/b2nd.c @@ -1005,7 +1005,7 @@ int b2nd_get_slice_nchunks(b2nd_array_t *array, const int64_t *start, const int6 } if (nchunks < array->sc->nchunks) { - *chunks_idx = reallocf(ptr, nchunks * sizeof(int64_t)); + *chunks_idx = realloc(ptr, nchunks * sizeof(int64_t)); } return nchunks;