From: Justin Viiret Date: Wed, 13 Jan 2016 21:52:18 +0000 (+1100) Subject: Fix release build (unused var) X-Git-Tag: v4.2.0^2~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e63fcec3c7b151c1d834431868e09a08a65f9ee4;p=thirdparty%2Fvectorscan.git Fix release build (unused var) --- diff --git a/src/runtime.c b/src/runtime.c index a3388639..8890e53f 100644 --- a/src/runtime.c +++ b/src/runtime.c @@ -1183,8 +1183,7 @@ void rawStreamExec(struct hs_stream *stream_state, struct hs_scratch *scratch) { assert(stream_state); assert(scratch); - char *state = getMultiState(stream_state); - assert(!getBroken(state)); + assert(!getBroken(getMultiState(stream_state))); DEBUG_PRINTF("::: streaming rose ::: offset = %llu len = %zu\n", stream_state->offset, scratch->core_info.len);