symbol.c (gfc_get_default_type): Fix error message...
authorTobias Burnus <burnus@net-b.de>
Fri, 28 Mar 2008 10:12:05 +0000 (11:12 +0100)
committerTobias Burnus <burnus@gcc.gnu.org>
Fri, 28 Mar 2008 10:12:05 +0000 (11:12 +0100)
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

gcc/fortran/ChangeLog
gcc/fortran/symbol.c

index 670c5b8a340ada8f07087279a8424a6a5b0fa9b8..5731e2017c9abb87ae1426ebf259d2cca8d3ab60 100644 (file)
@@ -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
index c86fa9ae40e957cd6e4ca9b674d7c4574ed22cfe..6e878817363c91ce030806da2db898c21e1c92f7 100644 (file)
@@ -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");