From ed19a4892861e40ba231c3be4e299819ce30ff3d Mon Sep 17 00:00:00 2001 From: Jason Evans Date: Wed, 1 Feb 2017 10:03:04 -0800 Subject: Silence harmless warnings discovered via run_tests.sh. --- test/unit/stats_print.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/unit/stats_print.c b/test/unit/stats_print.c index 91cfdf2..4f412dc 100644 --- a/test/unit/stats_print.c +++ b/test/unit/stats_print.c @@ -67,7 +67,10 @@ token_error(token_t *token) token->col); break; } - write(STDERR_FILENO, &token->parser->buf[token->pos], token->len); + { + UNUSED ssize_t err = write(STDERR_FILENO, + &token->parser->buf[token->pos], token->len); + } malloc_printf("\n"); } @@ -135,7 +138,9 @@ parser_tokenize(parser_t *parser) STATE_EXP_DIGITS, STATE_ACCEPT } state = STATE_START; - size_t token_pos, token_line, token_col; + size_t token_pos JEMALLOC_CC_SILENCE_INIT(0); + size_t token_line JEMALLOC_CC_SILENCE_INIT(1); + size_t token_col JEMALLOC_CC_SILENCE_INIT(0); assert_zu_le(parser->pos, parser->len, "Position is past end of buffer"); -- cgit v0.12