Commit d7cedf4b by Richard Stallman

*** empty log message ***

From-SVN: r1111
parent e7951b3f
...@@ -1361,7 +1361,7 @@ compile_file (name) ...@@ -1361,7 +1361,7 @@ compile_file (name)
pfatal_with_name (name); pfatal_with_name (name);
#ifdef IO_BUFFER_SIZE #ifdef IO_BUFFER_SIZE
setvbuf (finput, xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE); setvbuf (finput, (char *) xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE);
#endif #endif
/* Initialize data in various passes. */ /* Initialize data in various passes. */
...@@ -1575,7 +1575,8 @@ compile_file (name) ...@@ -1575,7 +1575,8 @@ compile_file (name)
} }
#ifdef IO_BUFFER_SIZE #ifdef IO_BUFFER_SIZE
setvbuf (asm_out_file, xmalloc (IO_BUFFER_SIZE), _IOFBF, IO_BUFFER_SIZE); setvbuf (asm_out_file, (char *) xmalloc (IO_BUFFER_SIZE),
_IOFBF, IO_BUFFER_SIZE);
#endif #endif
input_filename = name; input_filename = name;
......
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