diff options
author | Tobias Burnus <burnus@net-b.de> | 2008-03-28 11:12:05 +0100 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2008-03-28 11:12:05 +0100 |
commit | b0be8e5c63c8c89cf57b42566306c22b6654fda8 (patch) | |
tree | 0913777d1cef44cf70a31a40bd8f7b90332c13ab /gcc/fortran | |
parent | fc4f326169612ab9f7f8b7e90d80fd0c15bab080 (diff) | |
download | gcc-b0be8e5c63c8c89cf57b42566306c22b6654fda8.tar.gz |
symbol.c (gfc_get_default_type): Fix error message...
2008-03-28 Tobias Burnus <burnus@net-b.de>
* symbol.c (gfc_get_default_type): Fix error message; option
-fallow_leading_underscore should be -fallow-leading-underscore
From-SVN: r133678
Diffstat (limited to 'gcc/fortran')
-rw-r--r-- | gcc/fortran/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fortran/symbol.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 670c5b8a340..5731e2017c9 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,8 @@ +2008-03-28 Tobias Burnus <burnus@net-b.de> + + * symbol.c (gfc_get_default_type): Fix error message; option + -fallow_leading_underscore should be -fallow-leading-underscore + 2008-03-27 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR fortran/35724 diff --git a/gcc/fortran/symbol.c b/gcc/fortran/symbol.c index c86fa9ae40e..6e878817363 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"); |