summaryrefslogtreecommitdiff
path: root/gcc/fortran/module.c
diff options
context:
space:
mode:
authordominiq <dominiq@138bc75d-0d04-0410-961f-82ee72b054a4>2017-03-22 16:29:30 +0000
committerdominiq <dominiq@138bc75d-0d04-0410-961f-82ee72b054a4>2017-03-22 16:29:30 +0000
commit1b7008c4c12878ef1ac41882d1d1517920047054 (patch)
tree2feb2461ca530381301a8167867448f482e3fda8 /gcc/fortran/module.c
parent43b0b3ac03893413e1f769fe44868133becd8125 (diff)
2017-03-22 Dominique d'Humieres <dominiq@lps.ens.fr>
PR fortran/79602 * decl.c: Replace '%s' with %qs. * expr.c: Likewise. * interface.c: Likewise. * match.c: Likewise. * primary.c: Likewise. * resolve.c: Likewise. PR fortran/79844 PR fortran/80011 * io.c: Remove trailing spaces. * match.c: Likewise. * openmp.c: Likewise. * resolve.c: Likewise. * trans-intrinsic.c: Likewise. PR fortran/79853 * expr.c: Remove a double spaces. PR fortran/79859 * primary.c: Remove spurious quotes around %qs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@246391 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fortran/module.c')
-rw-r--r--gcc/fortran/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/module.c b/gcc/fortran/module.c
index 80a65244600a..60adde3c6358 100644
--- a/gcc/fortran/module.c
+++ b/gcc/fortran/module.c
@@ -676,7 +676,7 @@ gfc_match_use (void)
|| strcmp (new_use->local_name, use_list->module_name) == 0)
{
gfc_error ("The name %qs at %C has already been used as "
- "an external module name.", use_list->module_name);
+ "an external module name", use_list->module_name);
goto cleanup;
}
break;