diff options
author | Thomas Jarosch <tomj@simonv.com> | 2014-12-20 15:52:35 +0100 |
---|---|---|
committer | Thomas Jarosch <tomj@simonv.com> | 2014-12-20 15:52:35 +0100 |
commit | 29ffa832fec4a2123c10730ee6f3d6fc08e39de0 (patch) | |
tree | 849cbe600e988e16c0c5f2c165b38189ca12a75c /utils/zenutils | |
parent | 515a07e51dbb6bc0d7a3bdb5ee8e687367127dad (diff) |
Remove useless assignment of 'len'
The variable 'len' is not used after this statement.
Probably a copy'n'paste leftover from the similar
looking block above.
cppcheck reported:
[rockbox/utils/zenutils/source/shared/cenc.cpp:212]: (style) Same expression on both sides of '-'.
Change-Id: Ia8357187ed39d3fab10d97df75a1146c4f733790
Diffstat (limited to 'utils/zenutils')
-rw-r--r-- | utils/zenutils/source/shared/cenc.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/utils/zenutils/source/shared/cenc.cpp b/utils/zenutils/source/shared/cenc.cpp index 929a59b64d..c40c863887 100644 --- a/utils/zenutils/source/shared/cenc.cpp +++ b/utils/zenutils/source/shared/cenc.cpp @@ -209,7 +209,6 @@ int encode_run(byte* dst, int& dstidx, byte val, int len, int dstlen) int tmp = encode_run(dst, dstidx, val, len, dstlen); if (!tmp) return 0; ret += tmp; - len -= len; } } |