diff options
author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-10 02:44:39 +0000 |
---|---|---|
committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-10 02:44:39 +0000 |
commit | 7f3f54da0db40a3bd068d1c91b90e91667ee7d77 (patch) | |
tree | e1d2ff2853c7dafad589ef479202a5fb1e3ddf16 /libgfortran | |
parent | a60e40fd18a82214430e47b794eac1ee595fe3d8 (diff) | |
download | gcc-7f3f54da0db40a3bd068d1c91b90e91667ee7d77.tar.gz |
Committed wrong version of previous patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90384 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/io/read.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/read.c b/libgfortran/io/read.c index 6999158c13a..34454d663f7 100644 --- a/libgfortran/io/read.c +++ b/libgfortran/io/read.c @@ -704,7 +704,7 @@ done: sprintf (p, "%d", exponent); /* Do the actual conversion. */ - string_to_real (dest, buffer, length); + convert_real (dest, buffer, length); if (buffer != scratch) free_mem (buffer); |