From: Tobias Schlüter Date: Wed, 11 Jan 2006 19:51:16 +0000 (+0100) Subject: * parse.c (next_fixed): Remove superfluous string concatenation. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=950406443210b11b4fefa3b8d3ff17770544497f;p=gcc.git * parse.c (next_fixed): Remove superfluous string concatenation. From-SVN: r109599 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4dbc1565d2a..f82ff40597d 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,7 @@ +2006-01-11 Tobias Schl"uter + + * parse.c (next_fixed): Remove superfluous string concatenation. + 2006-01-11 Bernhard Fischer PR fortran/25486 diff --git a/gcc/fortran/parse.c b/gcc/fortran/parse.c index 87f36df23fd..6fd3322dbc1 100644 --- a/gcc/fortran/parse.c +++ b/gcc/fortran/parse.c @@ -464,7 +464,7 @@ next_fixed (void) blank_line: if (digit_flag) - gfc_warning ("Statement label in blank line will be " "ignored at %C"); + gfc_warning ("Statement label in blank line will be ignored at %C"); gfc_advance_line (); return ST_NONE; }