diff options
author | Zack Rusin <zack@tungstengraphics.com> | 2008-06-12 14:19:10 -0400 |
---|---|---|
committer | Zack Rusin <zack@tungstengraphics.com> | 2008-06-12 14:19:10 -0400 |
commit | 494c40dbed2bd63f43f70c1e6f7b46399d0a6377 (patch) | |
tree | 40cad3f6fb96b2b802c5dce0275737b79968bb4d | |
parent | f49dd47dc936587cd9eabddfe370651efc612f9f (diff) |
almost forgot - RelAddr is a boolean so use it here
-rw-r--r-- | src/mesa/shader/prog_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/prog_print.c b/src/mesa/shader/prog_print.c index 09bf15f004..2c5e03acc2 100644 --- a/src/mesa/shader/prog_print.c +++ b/src/mesa/shader/prog_print.c @@ -206,7 +206,7 @@ arb_output_attrib_string(GLint index, GLenum progType) */ static const char * reg_string(enum register_file f, GLint index, gl_prog_print_mode mode, - GLint relAddr, const struct gl_program *prog) + GLboolean relAddr, const struct gl_program *prog) { static char str[100]; |