Match upstream change to fix this warning, made a few days ago

This commit is contained in:
baldurk
2016-04-09 13:30:45 +02:00
parent 51721f78b8
commit 8a2b0bd6e9
+2 -2
View File
@@ -7761,7 +7761,7 @@ void hufBuildEncTable(
// Add a bit to all codes in the first list.
//
for (int j = m; /*true*/; j = hlink[j]) {
for (int j = m; ; j = hlink[j]) {
scode[j]++;
assert(scode[j] <= 58);
@@ -7780,7 +7780,7 @@ void hufBuildEncTable(
// Add a bit to all codes in the second list
//
for (int j = mm; /*true*/; j = hlink[j]) {
for (int j = mm; ; j = hlink[j]) {
scode[j]++;
assert(scode[j] <= 58);