Remove redundant assignment
authorJohann <johannkoenig@google.com>
Wed, 9 May 2012 17:26:07 +0000 (10:26 -0700)
committerJohann <johannkoenig@google.com>
Mon, 4 Jun 2012 22:51:38 +0000 (15:51 -0700)
clang complains about self-assignment

Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6

vp8/common/postproc.c

index ccf6ad7..a94ae00 100644 (file)
@@ -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;
 
     }