* lexsup.c (parse_args): Cast fopen result to PTR before storing

it in link_info.base_file.  Fix indentation.
This commit is contained in:
Ian Lance Taylor 1995-07-02 21:53:21 +00:00
parent be89267cfc
commit 243e769870
2 changed files with 12 additions and 6 deletions

View File

@ -1,3 +1,8 @@
Sun Jul 2 17:52:34 1995 Ian Lance Taylor <ian@cygnus.com>
* lexsup.c (parse_args): Cast fopen result to PTR before storing
it in link_info.base_file. Fix indentation.
Wed Jun 28 17:11:25 1995 Steve Chamberlain <sac@slash.cygnus.com>
* ldmain.c (main): Always initialize PE info in link_info.

View File

@ -432,12 +432,13 @@ parse_args (argc, argv)
whole_archive = true;
break;
case OPTION_BASE_FILE:
link_info.base_file = fopen (optarg,"w");
if (!link_info.base_file) {
fprintf (stderr, "%s: Can't open base file %s\n",
program_name, optarg);
xexit (1);
}
link_info.base_file = (PTR) fopen (optarg,"w");
if (link_info.base_file == NULL)
{
fprintf (stderr, "%s: Can't open base file %s\n",
program_name, optarg);
xexit (1);
}
break;
case 'X':
link_info.discard = discard_l;