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-Tag: releases/gcc-4.2.0~4922 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=950406443210b11b4fefa3b8d3ff17770544497f;p=thirdparty%2Fgcc.git * parse.c (next_fixed): Remove superfluous string concatenation. From-SVN: r109599 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 4dbc1565d2a0..f82ff40597d7 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 87f36df23fd2..6fd3322dbc12 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; }