From: Tobias Burnus Date: Fri, 28 Mar 2008 10:12:05 +0000 (+0100) Subject: symbol.c (gfc_get_default_type): Fix error message... X-Git-Tag: releases/gcc-4.4.0~5786 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b0be8e5c63c8c89cf57b42566306c22b6654fda8;p=thirdparty%2Fgcc.git symbol.c (gfc_get_default_type): Fix error message... 2008-03-28 Tobias Burnus * symbol.c (gfc_get_default_type): Fix error message; option -fallow_leading_underscore should be -fallow-leading-underscore From-SVN: r133678 --- diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 670c5b8a340a..5731e2017c9a 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2008-03-28 Tobias Burnus + + * symbol.c (gfc_get_default_type): Fix error message; option + -fallow_leading_underscore should be -fallow-leading-underscore + 2008-03-27 Jerry DeLisle PR fortran/35724 diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c index c86fa9ae40e9..6e878817363c 100644 --- a/gcc/fortran/symbol.c +++ b/gcc/fortran/symbol.c @@ -212,7 +212,7 @@ gfc_get_default_type (gfc_symbol *sym, gfc_namespace *ns) letter = sym->name[0]; if (gfc_option.flag_allow_leading_underscore && letter == '_') - gfc_internal_error ("Option -fallow_leading_underscore is for use only by " + gfc_internal_error ("Option -fallow-leading-underscore is for use only by " "gfortran developers, and should not be used for " "implicitly typed variables");