From b87ff3358b240c0438c8a7428d1e4b5d2b25eec7 Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Sun, 27 Nov 2005 12:56:25 +0100 Subject: * io/write.c (namelist_write): Correct type in previous commit. From-SVN: r107564 --- libgfortran/ChangeLog | 5 +++++ libgfortran/io/write.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'libgfortran') diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 109e090..59d6a3e 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,5 +1,10 @@ 2005-11-27 Francois-Xavier Coudert + * io/write.c (namelist_write): Correct type in previous + commit. + +2005-11-27 Francois-Xavier Coudert + PR libfortran/24919 * io/list_read.c (eat_separator, finish_separator, read_character): Handle CRLF separators correctly during reads. diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index 8ae2c13..d6323f4 100644 --- a/libgfortran/io/write.c +++ b/libgfortran/io/write.c @@ -1817,7 +1817,7 @@ namelist_write (st_parameter_dt *dtp) } } #ifdef HAVE_CRLF - write_character (dtp, " /\r\n ", 5); + write_character (dtp, " /\r\n", 5); #else write_character (dtp, " /\n", 4); #endif -- cgit v1.1