diff options
author | Eric Anholt <[email protected]> | 2010-07-28 16:53:51 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-28 17:32:11 -0700 |
commit | 8605c297cfb8068737991601f163f866395c41c9 (patch) | |
tree | bff3ebbd87870e3bf4742098c275d3761c81eb13 /src/glsl/glcpp/glcpp-parse.c | |
parent | 192b57df8c451c7ae39e5471124a9bab36ec17f8 (diff) |
glcpp: Print integer tokens as decimal, not hex.
Diffstat (limited to 'src/glsl/glcpp/glcpp-parse.c')
-rw-r--r-- | src/glsl/glcpp/glcpp-parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glcpp/glcpp-parse.c b/src/glsl/glcpp/glcpp-parse.c index 8fbbdab52fc..bfbd97f3d83 100644 --- a/src/glsl/glcpp/glcpp-parse.c +++ b/src/glsl/glcpp/glcpp-parse.c @@ -3041,7 +3041,7 @@ _token_print (char **out, token_t *token) switch (token->type) { case INTEGER: - glcpp_printf (*out, "%" PRIxMAX, token->value.ival); + glcpp_printf (*out, "%" PRIiMAX, token->value.ival); break; case IDENTIFIER: case INTEGER_STRING: |