diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-17 15:28:13 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-06-19 01:29:17 -0700 |
commit | 520aad2c3ee56067361714ff27e1b3c84c601126 (patch) | |
tree | da9669554828c02325f5190c852d631fafb93e75 | |
parent | c96822cf311d764a3cf6a2c62145851e8326c896 (diff) |
Fix compile on 64-bit.
-rw-r--r-- | program.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |