From 2b10528adcc6586793b42ea7ed7e2f523895be9b Mon Sep 17 00:00:00 2001
From: Johann <johannkoenig@google.com>
Date: Wed, 9 May 2012 10:26:07 -0700
Subject: [PATCH] Remove redundant assignment

clang complains about self-assignment

Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6
---
 vp8/common/postproc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vp8/common/postproc.c b/vp8/common/postproc.c
index ccf6ad7dd3..a94ae00065 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;
 
     }
-- 
GitLab