From: Johann Date: Wed, 9 May 2012 17:26:07 +0000 (-0700) Subject: Remove redundant assignment X-Git-Tag: v1.2.0~183 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b10528adcc6586793b42ea7ed7e2f523895be9b;p=libvpx Remove redundant assignment clang complains about self-assignment Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6 --- diff --git a/vp8/common/postproc.c b/vp8/common/postproc.c index ccf6ad7dd..a94ae0006 100644 --- a/vp8/common/postproc.c +++ b/vp8/common/postproc.c @@ -441,7 +441,7 @@ static void fillrd(struct postproc_state *state, int q, int a) } - for (next = next; next < 256; next++) + for (; next < 256; next++) char_dist[next] = 0; }