diff options
author | Carl Worth <[email protected]> | 2010-08-11 13:50:51 -0700 |
---|---|---|
committer | Carl Worth <[email protected]> | 2010-08-11 14:38:03 -0700 |
commit | 624dd585c72103e5bffbc600cdf7bdfba5305a15 (patch) | |
tree | 74dc724192433a6b750126050bc5a8c2024068b3 /src/glsl/glcpp/glcpp-parse.y | |
parent | cb5ea0c79bd74ea6263d54302ed19c243ceb05de (diff) |
glcpp: Reword diagnostic for #elif with no expression
Rather than telling the user what to fix, the standard convention is to
describe what the detected problem is. With this change, test
081-elif-without-expression now passes.
Diffstat (limited to 'src/glsl/glcpp/glcpp-parse.y')
-rw-r--r-- | src/glsl/glcpp/glcpp-parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/glcpp/glcpp-parse.y b/src/glsl/glcpp/glcpp-parse.y index 643c449d0e1..795030ecfe7 100644 --- a/src/glsl/glcpp/glcpp-parse.y +++ b/src/glsl/glcpp/glcpp-parse.y @@ -276,7 +276,7 @@ control_line: if (parser->skip_stack && parser->skip_stack->type == SKIP_TO_ELSE) { - glcpp_error(& @1, parser, "#elif needs an expression"); + glcpp_error(& @1, parser, "#elif with no expression"); } else { |