aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancois-Xavier Coudert <coudert@clipper.ens.fr>2005-06-17 00:31:32 +0200
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>2005-06-16 22:31:32 +0000
commitb9297522fdbd4f8414092494532bbd2b0edb4726 (patch)
tree3fea7cabdda23b889a23dd9d175f4ab0f05585b6
parent2f06ccc69e7513ff60afd0290e4a50f6961eb5bf (diff)
downloadgcc-b9297522fdbd4f8414092494532bbd2b0edb4726.zip
gcc-b9297522fdbd4f8414092494532bbd2b0edb4726.tar.gz
gcc-b9297522fdbd4f8414092494532bbd2b0edb4726.tar.bz2
* io/transfer.c (formatted_transfer): Fix typo in error message.
From-SVN: r101102
-rw-r--r--libgfortran/ChangeLog4
-rw-r--r--libgfortran/io/transfer.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog
index 0467cb1..2637fb5 100644
--- a/libgfortran/ChangeLog
+++ b/libgfortran/ChangeLog
@@ -1,5 +1,9 @@
2005-06-17 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+ * io/transfer.c (formatted_transfer): Fix typo in error message.
+
+2005-06-17 Francois-Xavier Coudert <coudert@clipper.ens.fr>
+
PR libfortran/16436
* io/transfer.c (read_sf): Correct updating of bytes_left field.
(formatted_transfer): Correct updating of bytes_left field and
diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c
index c81cb47..d26e7f7 100644
--- a/libgfortran/io/transfer.c
+++ b/libgfortran/io/transfer.c
@@ -685,7 +685,7 @@ formatted_transfer (bt type, void *p, int len)
if (pos < 0 || pos >= current_unit->recl )
{
- generate_error (ERROR_EOR, "T Or TL edit position error");
+ generate_error (ERROR_EOR, "T or TL edit position error");
break ;
}
m = pos - (current_unit->recl - current_unit->bytes_left);