From: Christoph Mallon Date: Fri, 12 Sep 2008 17:21:15 +0000 (+0000) Subject: Do not split string literals. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=de3aa4ab04eee3052bd5374774decdcd8c3971d6;p=cparser Do not split string literals. [r21901] --- diff --git a/parser.c b/parser.c index 9a35b66..5f4834d 100644 --- a/parser.c +++ b/parser.c @@ -5444,8 +5444,8 @@ static void parse_compound_declarators(declaration_t *struct_declaration, expression_t *size = parse_constant_expression(); if (!is_type_integer(type)) { - errorf(HERE, "bitfield base type '%T' is not an " - "integer type", orig_type); + errorf(HERE, "bitfield base type '%T' is not an integer type", + orig_type); } type_t *bitfield_type = make_bitfield_type(orig_type, size, &source_position); @@ -5458,8 +5458,8 @@ static void parse_compound_declarators(declaration_t *struct_declaration, "compound member '%Y' has incomplete type '%T'", declaration->symbol, orig_type); } else if (is_type_function(type)) { - errorf(HERE, "compound member '%Y' must not have function " - "type '%T'", declaration->symbol, orig_type); + errorf(HERE, "compound member '%Y' must not have function type '%T'", + declaration->symbol, orig_type); } } }