From: Mark Wooding Date: Fri, 2 Nov 2018 22:09:50 +0000 (+0000) Subject: symm/blkc.h (BLKC_SHOW): Capture operand as `const'. X-Git-Tag: 2.5.0~30 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/514871e70e715d0fa4d85c91526cbd4c993ec592 symm/blkc.h (BLKC_SHOW): Capture operand as `const'. --- diff --git a/symm/blkc.h b/symm/blkc.h index 1cbe729c..e94e932b 100644 --- a/symm/blkc.h +++ b/symm/blkc.h @@ -109,7 +109,7 @@ #define BLKC_SHOW(PRE, tag, w) do { \ fputs(tag ": ", stdout); \ - BLKC_SKEL_X(PRE, BLKC_W(w);, printf("%08x ", *_w++);); \ + BLKC_SKEL_X(PRE, const BLKC_W(w);, printf("%08x ", *_w++);); \ fputc('\n', stdout); \ } while (0)