Review at https://gerrit.osmocom.org/2879
core/conv/conv.c: drop useless assignment
Change-Id: I8c3aa5ec100abacf93da1493aa134e42bf612206
---
M src/conv.c
1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/79/2879/1
diff --git a/src/conv.c b/src/conv.c
index 79b3a7c..aebb9b4 100644
--- a/src/conv.c
+++ b/src/conv.c
@@ -625,7 +625,7 @@
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 */
--
To view, visit https://gerrit.osmocom.org/2879
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I8c3aa5ec100abacf93da1493aa134e42bf612206
Gerrit-PatchSet: 1
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Vadim Yanitskiy <[email protected]>