core/conv/conv.c: drop useless assignment

Change-Id: I8c3aa5ec100abacf93da1493aa134e42bf612206
This commit is contained in:
Vadim Yanitskiy 2017-06-12 03:47:34 +07:00
parent f178695466
commit 6e6978ad12
1 changed files with 1 additions and 1 deletions

View File

@ -624,7 +624,7 @@ osmo_conv_decode(const struct osmo_conv_code *code,
l = osmo_conv_decode_scan(&decoder, input, code->len);
if (code->term == CONV_TERM_FLUSH)
l = osmo_conv_decode_flush(&decoder, &input[l]);
osmo_conv_decode_flush(&decoder, &input[l]);
rv = osmo_conv_decode_get_output(&decoder, output,
code->term == CONV_TERM_FLUSH, /* has_flush */