X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/67b5031ec6d160b5cae425466a34d1be3b211dd4..98ff9295493ed2b990f30768e11b18b6bc65eaa4:/codec/baseconv.c diff --git a/codec/baseconv.c b/codec/baseconv.c index 53fceb2..53949bb 100644 --- a/codec/baseconv.c +++ b/codec/baseconv.c @@ -28,8 +28,6 @@ /*----- Header files ------------------------------------------------------*/ #include -#include -#include #include #include "alloc.h" @@ -419,7 +417,7 @@ static int ctxn##_dec(codec *c, const void *p, size_t sz, dstr *d) \ static void ctxn##_destroy(codec *c) \ { \ ctxn##_codec *bc = (ctxn##_codec *)c; \ - if (bc->ctx.indent) xfree((/*unconst*/ char *)bc->ctx.indent); \ + if (bc->ctx.indent) xfree(UNCONST(char, bc->ctx.indent)); \ DESTROY(bc); \ } \ \