mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-10 19:00:13 +01:00
i965: Fix compiler warning about signed/unsigned.
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
4545ec1691
commit
0d99aef6c8
1 changed files with 1 additions and 1 deletions
|
|
@ -1913,7 +1913,7 @@ fs_visitor::assign_constant_locations()
|
|||
if (remapped == -1)
|
||||
continue;
|
||||
|
||||
assert(remapped <= i);
|
||||
assert(remapped <= (int)i);
|
||||
stage_prog_data->param[remapped] = stage_prog_data->param[i];
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue