projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2644a80
)
gallium/aux/util/u_pstipple.c: Fix one -Wsign-compare warning in ?: construct.
author
Gert Wollny
<gw.fossdev@gmail.com>
Thu, 16 Nov 2017 15:09:46 +0000
(16:09 +0100)
committer
Brian Paul
<brianp@vmware.com>
Fri, 17 Nov 2017 16:27:57 +0000
(09:27 -0700)
Silence the warning by making the conversion to int explicit.
Signed-off-by: Gert Wollny <gw.fossdev@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/util/u_pstipple.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/util/u_pstipple.c
b/src/gallium/auxiliary/util/u_pstipple.c
index ae4cfa1d76a9734f9b80f1541bf5d541e4b75148..77b0458dc0301fa7b80fe9d086b6773c10e35fbd 100644
(file)
--- a/
src/gallium/auxiliary/util/u_pstipple.c
+++ b/
src/gallium/auxiliary/util/u_pstipple.c
@@
-297,7
+297,7
@@
pstip_transform_prolog(struct tgsi_transform_context *ctx)
ctx->emit_declaration(ctx, &decl);
}
- sampIdx = pctx->hasFixedUnit ? pctx->fixedUnit : pctx->freeSampler;
+ sampIdx = pctx->hasFixedUnit ?
(int)
pctx->fixedUnit : pctx->freeSampler;
/* declare new sampler */
tgsi_transform_sampler_decl(ctx, sampIdx);