Commit b87ff335 by Francois-Xavier Coudert Committed by François-Xavier Coudert

* io/write.c (namelist_write): Correct type in previous commit.

From-SVN: r107564
parent 8824fd4c
2005-11-27 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* io/write.c (namelist_write): Correct type in previous
commit.
2005-11-27 Francois-Xavier Coudert <coudert@clipper.ens.fr>
PR libfortran/24919
* io/list_read.c (eat_separator, finish_separator,
read_character): Handle CRLF separators correctly during reads.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment