PR libfortran/89020
* io/close.c (st_close): Simplify text of error message to not
presume a specific cause of failure to remove file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@268319
138bc75d-0d04-0410-961f-
82ee72b054a4
+2019-01-27 Jerry DeLisle <jvdelisle@gcc.gnu.org>
+
+ PR libfortran/89020
+ * io/close.c (st_close): Simplify text of error message to not
+ presume a specific cause of failure to remove file.
+
2019-01-26 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR libfortran/89020
if (remove (u->filename))
generate_error (&clp->common, LIBERROR_OS,
- "File cannot be deleted, possibly in use by"
- " another process");
+ "File cannot be deleted");
#else
path = strdup (u->filename);
#endif
{
if (remove (path))
generate_error (&clp->common, LIBERROR_OS,
- "File cannot be deleted, possibly in use by"
- " another process");
+ "File cannot be deleted");
free (path);
}
#endif