From: Kenneth Graunke Date: Thu, 17 Jun 2010 22:28:13 +0000 (-0700) Subject: Fix compile on 64-bit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=520aad2c3ee56067361714ff27e1b3c84c601126;p=mesa.git Fix compile on 64-bit. --- 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;