diff options
author | Timothy Arceri <[email protected]> | 2016-08-01 10:35:06 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2016-08-01 14:52:07 +1000 |
commit | cec377eed3ab6420679dceef98ad0eea27b5f644 (patch) | |
tree | f88afd6a071bc8b1f9fe13d3a6d251710bc290d4 /src/mesa | |
parent | 26ff7e373f5675a0a60c97a11ef557ad8b1bfbe5 (diff) |
i965: fix comparison warning
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 3309f61a06c..d1ac80a78fc 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -6381,7 +6381,7 @@ move_interpolation_to_top(nir_shader *nir) instr }; - for (int i = 0; i < ARRAY_SIZE(move); i++) { + for (unsigned i = 0; i < ARRAY_SIZE(move); i++) { if (move[i]->block != top) { move[i]->block = top; exec_node_remove(&move[i]->node); |