summaryrefslogtreecommitdiff
path: root/program.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-06-17 15:28:13 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-06-19 01:29:17 -0700
commit520aad2c3ee56067361714ff27e1b3c84c601126 (patch)
treeda9669554828c02325f5190c852d631fafb93e75 /program.h
parentc96822cf311d764a3cf6a2c62145851e8326c896 (diff)
Fix compile on 64-bit.
Diffstat (limited to 'program.h')
-rw-r--r--program.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/program.h b/program.h
index 8d4088dddd..44cf345635 100644
--- 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;