summaryrefslogtreecommitdiff
path: root/libgfortran/io
diff options
context:
space:
mode:
authorfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2005-06-16 22:31:32 +0000
committerfxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4>2005-06-16 22:31:32 +0000
commitcbbc2f0ee3cd9d3cc67edf5adcbe5eaaba0ad5c8 (patch)
tree3fea7cabdda23b889a23dd9d175f4ab0f05585b6 /libgfortran/io
parent363dcb8110a3bc3707a140e39d30969394f708aa (diff)
downloadgcc-cbbc2f0ee3cd9d3cc67edf5adcbe5eaaba0ad5c8.tar.gz
* io/transfer.c (formatted_transfer): Fix typo in error message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101102 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/io')
-rw-r--r--libgfortran/io/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/transfer.c b/libgfortran/io/transfer.c
index c81cb47eaa3..d26e7f7f54b 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);