summaryrefslogtreecommitdiff
path: root/src/glsl/glcpp/glcpp-parse.y
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2010-08-11 13:50:51 -0700
committerCarl Worth <cworth@cworth.org>2010-08-11 14:38:03 -0700
commit624dd585c72103e5bffbc600cdf7bdfba5305a15 (patch)
tree74dc724192433a6b750126050bc5a8c2024068b3 /src/glsl/glcpp/glcpp-parse.y
parentcb5ea0c79bd74ea6263d54302ed19c243ceb05de (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.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 643c449d0e..795030ecfe 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
{