mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-24 14:45:53 +00:00
Match upstream change to fix this warning, made a few days ago
This commit is contained in:
Vendored
+2
-2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user