]> git.tuebingen.mpg.de Git - paraslash.git/commit
wmadec: Fix two dead stores.
authorAndre Noll <maan@systemlinux.org>
Mon, 15 Aug 2011 17:42:15 +0000 (19:42 +0200)
committerAndre Noll <maan@systemlinux.org>
Wed, 21 Sep 2011 09:04:12 +0000 (11:04 +0200)
commit7321c2e7aad44b741be702de0a2ef73222be0d08
treed381895516f4dc2c1d0575a565c5814fc97d184e
parent746031e120cbc1afa4c191986a55f1789f5d194a
wmadec: Fix two dead stores.

wmadec_filter.c:772:3: warning: Value stored to 'mult1' is never read
                mult1 = mult;
                ^       ~~~~
wmadec_filter.c:1015:3: warning: Value stored to 'n' is never read
                n = pwd->block_len;
                ^   ~~~~~~~~~~~~~~

Also convert a statement of the form x = x * y to x *= y;
wmadec_filter.c