Fix compile on 64-bit.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 17 Jun 2010 22:28:13 +0000 (15:28 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Sat, 19 Jun 2010 08:29:17 +0000 (01:29 -0700)
program.h

index 8d4088d..44cf345 100644 (file)
--- a/program.h
+++ b/program.h
@@ -33,7 +33,7 @@ struct glsl_shader {
    GLboolean DeletePending;
    GLboolean CompileStatus;
    const GLchar *Source;  /**< Source code string */
-   GLuint SourceLen;
+   size_t SourceLen;
    GLchar *InfoLog;
 
    struct exec_list ir;