summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp/glcpp-parse.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-07-28 16:53:51 -0700
committerEric Anholt <eric@anholt.net>2010-07-28 17:32:11 -0700
commit8605c297cfb8068737991601f163f866395c41c9 (patch)
treebff3ebbd87870e3bf4742098c275d3761c81eb13 /src/glsl/glcpp/glcpp-parse.c
parent192b57df8c451c7ae39e5471124a9bab36ec17f8 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glcpp/glcpp-parse.c b/src/glsl/glcpp/glcpp-parse.c
index 8fbbdab52f..bfbd97f3d8 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: