diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-12-11 15:22:24 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-12-11 15:22:24 +0000 |
commit | 509c1e9cf24a513738150f39f9359442c13261b8 (patch) | |
tree | 00557640ba653716ebb420d3dd06a6ef1b1d0918 /gcc/ch/expr.c | |
parent | 53a12329af305dcbe9b9e0de09ae71c6cfb5ecfc (diff) | |
download | gcc-509c1e9cf24a513738150f39f9359442c13261b8.zip gcc-509c1e9cf24a513738150f39f9359442c13261b8.tar.gz gcc-509c1e9cf24a513738150f39f9359442c13261b8.tar.bz2 |
typeck.c (apply_chill_array_layout, [...]): Avoid the use of ANSI string concatenation.
* typeck.c (apply_chill_array_layout, apply_chill_field_layout):
Avoid the use of ANSI string concatenation.
* expr.c (chill_expand_case_expr): Likewise.
From-SVN: r30867
Diffstat (limited to 'gcc/ch/expr.c')
-rw-r--r-- | gcc/ch/expr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/ch/expr.c b/gcc/ch/expr.c index e68f3a0..89ff573 100644 --- a/gcc/ch/expr.c +++ b/gcc/ch/expr.c @@ -211,8 +211,7 @@ chill_expand_case_expr (expr) chill_handle_case_label (TREE_VALUE (label), selector); labels = TREE_CHAIN (labels); if (labels != NULL_TREE) - error ("The number of CASE selectors does not match the number " - "of CASE label lists"); + error ("The number of CASE selectors does not match the number of CASE label lists"); } } |