Commit c366ade5 by Hans-Peter Nilsson Committed by Hans-Peter Nilsson

c-opts.c (c_common_post_options): On fopen failure, return false, not NULL.

	* c-opts.c (c_common_post_options): On fopen failure, return
	false, not NULL.

From-SVN: r64004
parent 32b0bbaa
2003-03-09 Hans-Peter Nilsson <hp@bitrange.com>
* c-opts.c (c_common_post_options): On fopen failure, return
false, not NULL.
2003-03-08 Hans-Peter Nilsson <hp@bitrange.com>
* config/cris/cris_abi_symbol.c: #include tconfig.h and tm.h, not
......
......@@ -1508,7 +1508,7 @@ c_common_post_options (pfilename)
if (out_stream == NULL)
{
fatal_io_error ("opening output file %s", out_fname);
return NULL;
return false;
}
init_pp_output (out_stream);
......
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