diff options
| author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-16 22:31:32 +0000 |
|---|---|---|
| committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-16 22:31:32 +0000 |
| commit | cbbc2f0ee3cd9d3cc67edf5adcbe5eaaba0ad5c8 (patch) | |
| tree | 3fea7cabdda23b889a23dd9d175f4ab0f05585b6 | |
| parent | 363dcb8110a3bc3707a140e39d30969394f708aa (diff) | |
| download | ppe42-gcc-cbbc2f0ee3cd9d3cc67edf5adcbe5eaaba0ad5c8.tar.gz ppe42-gcc-cbbc2f0ee3cd9d3cc67edf5adcbe5eaaba0ad5c8.zip | |
* 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
| -rw-r--r-- | libgfortran/ChangeLog | 4 | ||||
| -rw-r--r-- | libgfortran/io/transfer.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 0467cb118cb..2637fb5ad03 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 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); |

