mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 18:00:10 +01:00
mesa: s/unsigned/int/ to fix MSVC warning in uniforms.c
This commit is contained in:
parent
5b0fbf1b0b
commit
2cfd768473
1 changed files with 1 additions and 1 deletions
|
|
@ -832,7 +832,7 @@ _mesa_get_uniform_name(const struct gl_uniform_storage *uni,
|
|||
* harm in always appending "[0]" to uniform array names.
|
||||
*/
|
||||
if (uni->array_elements != 0) {
|
||||
unsigned i;
|
||||
int i;
|
||||
|
||||
/* The comparison is strange because *length does *NOT* include the
|
||||
* terminating NUL, but maxLength does.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue