diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2017-06-12 03:47:34 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2017-06-13 20:22:19 +0700 |
commit | 6e6978ad1224eb0f1c9e5472a7ee6e923b1ab872 (patch) | |
tree | 88b3df222827165ab95af05dbc500984aa0439d2 /src | |
parent | f17869546651601b24a2ac333cff05f7526f63a3 (diff) |
core/conv/conv.c: drop useless assignment
Change-Id: I8c3aa5ec100abacf93da1493aa134e42bf612206
Diffstat (limited to 'src')
-rw-r--r-- | src/conv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |