Do not split string literals.
authorChristoph Mallon <christoph.mallon@gmx.de>
Fri, 12 Sep 2008 20:02:38 +0000 (20:02 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Fri, 12 Sep 2008 20:02:38 +0000 (20:02 +0000)
[r21909]

parser.c

index ef0cecc..af8b090 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -6771,8 +6771,9 @@ static expression_t *parse_select_expression(unsigned precedence,
        } else {
                if (is_type_valid(type_left) &&
                    (!is_pointer || is_type_pointer(type))) {
-                       errorf(HERE, "request for member '%Y' in something not a struct or "
-                              "union, but '%T'", symbol, type_left);
+                       errorf(HERE,
+                              "request for member '%Y' in something not a struct or union, but '%T'",
+                              symbol, type_left);
                }
 create_error_entry:
                entry         = allocate_declaration_zero();