Remove redundant assignment
clang complains about self-assignment Change-Id: Iead70eed0a960e84a4b167f67f05b05e2965b3b6
This commit is contained in:
parent
c8a88a7642
commit
2b10528adc
@ -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;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user