diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-18 19:52:36 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2010-06-21 12:38:39 -0700 |
commit | 33eaa3e0b3a8f94c2abb23ac3c9cbe571f170fb6 (patch) | |
tree | 10e52bcbd713a687e7d16618d82befaf6acd7782 /glcpp/glcpp.c | |
parent | 03ee33809f2e5c6ecff827188ec33be5a9397c16 (diff) |
glcpp: Rename "errors" to "info_log."
Eventually, we'll want to be be able to print out warnings as well.
Diffstat (limited to 'glcpp/glcpp.c')
-rw-r--r-- | glcpp/glcpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcpp/glcpp.c b/glcpp/glcpp.c index d204eee49a..8ba4661f78 100644 --- a/glcpp/glcpp.c +++ b/glcpp/glcpp.c @@ -36,7 +36,7 @@ main (void) ret = glcpp_parser_parse (parser); printf("%s", parser->output); - fprintf(stderr, "%s", parser->errors); + fprintf(stderr, "%s", parser->info_log); glcpp_parser_destroy (parser); |