diff options
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_exec.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index 68bb598cf3c..0b58f097ecf 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -1057,7 +1057,7 @@ fetch_src_file_channel(const struct tgsi_exec_machine *mach, const uint *buf = (const uint *)mach->Consts[constbuf]; const int pos = index->i[i] * 4 + swizzle; /* const buffer bounds check */ - if (pos < 0 || pos >= mach->ConstsSize[constbuf]) { + if (pos < 0 || pos >= (int) mach->ConstsSize[constbuf]) { if (0) { /* Debug: print warning */ static int count = 0; |