From 520aad2c3ee56067361714ff27e1b3c84c601126 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Thu, 17 Jun 2010 15:28:13 -0700 Subject: [PATCH] Fix compile on 64-bit. --- program.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/program.h b/program.h index 8d4088dddde..44cf3456355 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; -- 2.30.2