From d7cedf4b468aa06cf1b7d30fc4fad2ee64f40b5b Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 28 May 1992 05:36:37 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1111 --- gcc/toplev.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/toplev.c b/gcc/toplev.c index 19da62137d9..a8149843ea7 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1361,7 +1361,7 @@ compile_file (name) pfatal_with_name (name); #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 /* Initialize data in various passes. */ @@ -1575,7 +1575,8 @@ compile_file (name) } #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 input_filename = name; -- 2.30.2