cpplint issue with treedreader

Change-Id: I4036add96dd5e42896c57a80a6ef2b6f27b8224a
This commit is contained in:
Jim Bankoski 2013-09-29 17:20:33 -07:00
parent 8e45778eaf
commit 0f9efe9e7a

View File

@ -23,7 +23,8 @@ static int treed_read(vp9_reader *const r, /* !!! must return a 0 or 1 !!! */
const vp9_prob *const p) {
register vp9_tree_index i = 0;
while ((i = t[ i + vp9_read(r, p[i >> 1])]) > 0);
while ((i = t[ i + vp9_read(r, p[i >> 1])]) > 0)
continue;
return -i;
}