diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fix-header.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 589a2b7..de0d48c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2001-01-07 Neil Booth <neil@daikokuya.demon.co.uk> + * fix-header.c (read_scan_file): s/pfile/scan_in/. + +2001-01-07 Neil Booth <neil@daikokuya.demon.co.uk> + * c-lang.c (c_post_options): Call cpp_post_options. * objc/objc-act.c (objc_post_options): Similarly. * cppmain.c (main): Similarly. diff --git a/gcc/fix-header.c b/gcc/fix-header.c index 0548559..11b1141 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -629,7 +629,7 @@ read_scan_file (in_fname, argc, argv) i = cpp_handle_options (scan_in, argc, argv); if (i < argc && ! CPP_FATAL_ERRORS (scan_in)) cpp_fatal (scan_in, "Invalid option `%s'", argv[i]); - cpp_post_options (pfile); + cpp_post_options (scan_in); if (CPP_FATAL_ERRORS (scan_in)) exit (FATAL_EXIT_CODE); |