summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang
diff options
context:
space:
mode:
authorMichal Krol <michal@tungstengraphics.com>2008-08-07 16:23:15 +0200
committerMichal Krol <michal@tungstengraphics.com>2008-08-07 16:23:15 +0200
commitc5c7130385b1b0d35b52a6df68d9558a92fabd86 (patch)
tree63f68b733421991f84952d3ff7a9f3e33348a71c /src/mesa/shader/slang
parentd50d7a54de89e602a9951264878dfe06924e1adb (diff)
mesa: Silence compiler warnings on Windows.
Diffstat (limited to 'src/mesa/shader/slang')
-rw-r--r--src/mesa/shader/slang/slang_link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/slang/slang_link.c b/src/mesa/shader/slang/slang_link.c
index 8f07406ee4..d96380e03f 100644
--- a/src/mesa/shader/slang/slang_link.c
+++ b/src/mesa/shader/slang/slang_link.c
@@ -296,7 +296,7 @@ _slang_count_temporaries(struct gl_program *prog)
maxIndex = inst->SrcReg[j].Index;
}
if (inst->DstReg.File == PROGRAM_TEMPORARY) {
- if (maxIndex < inst->DstReg.Index)
+ if (maxIndex < (GLint) inst->DstReg.Index)
maxIndex = inst->DstReg.Index;
}
}