mesa: Assign _mesa_lookup_parameter_index return value to GLint.
authorVinson Lee <vlee@vmware.com>
Fri, 11 Dec 2009 02:32:33 +0000 (18:32 -0800)
committerVinson Lee <vlee@vmware.com>
Fri, 11 Dec 2009 02:32:33 +0000 (18:32 -0800)
src/mesa/shader/prog_parameter.c

index 2f029b0..f22492e 100644 (file)
@@ -500,7 +500,7 @@ GLfloat *
 _mesa_lookup_parameter_value(const struct gl_program_parameter_list *paramList,
                              GLsizei nameLen, const char *name)
 {
-   GLuint i = _mesa_lookup_parameter_index(paramList, nameLen, name);
+   GLint i = _mesa_lookup_parameter_index(paramList, nameLen, name);
    if (i < 0)
       return NULL;
    else