diff options
author | Gert Wollny <[email protected]> | 2018-06-05 13:58:46 +0200 |
---|---|---|
committer | Gert Wollny <[email protected]> | 2018-06-20 11:08:28 +0200 |
commit | fc9e259e58ef73633bd51827427cc2ea63569ae0 (patch) | |
tree | 7e68c3ccffdc752427c16463e4e11bfd3530572f /src/gallium/auxiliary/tgsi | |
parent | 03ac9708cf64832a19d6dca95c8fd1fdfc4d70ab (diff) |
gallium/aux/tgsi/tgsi_dump.c: Fix -Wsign-compare warnings
tgsi_dump.c: In function 'iter_property':
tgsi_dump.c:443:18: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]
for (i = 0; i < prop->Property.NrTokens - 1; ++i) {
^
tgsi_dump.c:459:13: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]
if (i < prop->Property.NrTokens - 2)
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_dump.c b/src/gallium/auxiliary/tgsi/tgsi_dump.c index f6c85390e90..705d9f1cbf7 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_dump.c +++ b/src/gallium/auxiliary/tgsi/tgsi_dump.c @@ -480,7 +480,7 @@ iter_property( struct tgsi_iterate_context *iter, struct tgsi_full_property *prop ) { - unsigned i; + int i; struct dump_ctx *ctx = (struct dump_ctx *)iter; TXT( "PROPERTY " ); |