[PATCH Fortran committed] PR 84354 - Replace '%qs' with %qs in fortran/decl.c

Dominique d'Humières dominiq@lps.ens.fr
Fri Feb 16 18:05:00 GMT 2018


Patch committed as obvious at revision r257750.

Dominique

--- trunk/gcc/fortran/decl.c	2018/02/16 17:42:08	257749
+++ trunk/gcc/fortran/decl.c	2018/02/16 18:01:02	257750
@@ -3302,7 +3302,7 @@
 		kind_expr = gfc_copy_expr (c1->initializer);
 	      else if (!(actual_param && param->attr.pdt_len))
 		{
-		  gfc_error ("The derived parameter '%qs' at %C does not "
+		  gfc_error ("The derived parameter %qs at %C does not "
 			     "have a default value", param->name);
 		  goto error_return;
 		}
@@ -3362,14 +3362,14 @@
 	  && (actual_param->spec_type == SPEC_ASSUMED
 	      || actual_param->spec_type == SPEC_DEFERRED))
 	{
-	  gfc_error ("The KIND parameter '%qs' at %C cannot either be "
+	  gfc_error ("The KIND parameter %qs at %C cannot either be "
 		     "ASSUMED or DEFERRED", param->name);
 	  goto error_return;
 	}
 
       if (!kind_expr || !gfc_is_constant_expr (kind_expr))
 	{
-	  gfc_error ("The value for the KIND parameter '%qs' at %C does not "
+	  gfc_error ("The value for the KIND parameter %qs at %C does not "
 		     "reduce to a constant expression", param->name);
 	  goto error_return;
 	}




More information about the Fortran mailing list