mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-25 11:54:01 +08:00
re PR fortran/41219 (libgfortran build warnings)
2009-09-12 Jerry DeLisle <jvdelisle@gcc.gnu.org> PR libgfortran/41219 * io/write.c (write_a_char4): Use correct type for crlf constant. From-SVN: r151653
This commit is contained in:
parent
6fb30a1410
commit
b495ad7f55
@ -1,3 +1,8 @@
|
||||
2009-09-12 Jerry DeLisle <jvdelisle@gcc.gnu.org>
|
||||
|
||||
PR libgfortran/41219
|
||||
* io/write.c (write_a_char4): Use correct type for crlf constant.
|
||||
|
||||
2009-09-11 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
* Makefile.am (libgfortranbegin_la_LINK): New.
|
||||
|
@ -293,7 +293,7 @@ write_a_char4 (st_parameter_dt *dtp, const fnode *f, const char *source, int len
|
||||
Standard sections 10.6.3 and 9.9 for further information. */
|
||||
if (is_stream_io (dtp))
|
||||
{
|
||||
const char crlf[] = "\r\n";
|
||||
const gfc_char4_t crlf[] = {0x000d,0x000a};
|
||||
int i, bytes;
|
||||
gfc_char4_t *qq;
|
||||
bytes = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user