Remove redundant assignment

clang complains about self-assignment

Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6
This commit is contained in:
Johann 2012-05-09 10:26:07 -07:00
parent c8a88a7642
commit 2b10528adc

View 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;
}