diff options
author | bdavis <bdavis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-19 17:03:16 +0000 |
---|---|---|
committer | bdavis <bdavis@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-19 17:03:16 +0000 |
commit | 97e1f41234b495b79aa79bf1418319373bac5e73 (patch) | |
tree | c0d2764ced32659a16e1379da00c18f74e10c39a | |
parent | 9beaf5401b32af3b6b55ef0f4eb0fce79c1f272a (diff) | |
download | gcc-97e1f41234b495b79aa79bf1418319373bac5e73.tar.gz |
2004-06-19 Bud Davis <bdavis9659@comcast.net>
PR gfortran/16080
* io/list_read.c(set_value): fixed spelling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83389 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libgfortran/ChangeLog | 5 | ||||
-rw-r--r-- | libgfortran/io/list_read.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 5d6a81654bc..36abe2a193d 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,6 +1,11 @@ 2004-06-19 Bud Davis <bdavis9659@comcast.net> PR gfortran/16080 + * io/list_read.c(set_value): fixed spelling. + +2004-06-19 Bud Davis <bdavis9659@comcast.net> + + PR gfortran/16080 * io/list_read.c(set_value): don't copy if the string is null. 2004-06-14 Bud Davis <bdavis9659@comcast.net> diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index aa22f8ad0ff..bcfbc83fe7b 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -1318,7 +1318,7 @@ set_value: m = (len < saved_used) ? len : saved_used; memcpy (p, saved_string, m); } - else /* just delimeters encountered, nothing to copy but SPACE */ + else /* just delimiters encountered, nothing to copy but SPACE */ m = 0; if (m < len) |