summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp/glcpp-parse.y
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.y
parent192b57df8c451c7ae39e5471124a9bab36ec17f8 (diff)
glcpp: Print integer tokens as decimal, not hex.
Diffstat (limited to 'src/glsl/glcpp/glcpp-parse.y')
-rw-r--r--src/glsl/glcpp/glcpp-parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glcpp/glcpp-parse.y b/src/glsl/glcpp/glcpp-parse.y
index c6ff32e544..2009aeaf8a 100644
--- a/src/glsl/glcpp/glcpp-parse.y
+++ b/src/glsl/glcpp/glcpp-parse.y
@@ -736,7 +736,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: