aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-01-07 17:42:22 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-01-07 17:42:22 +0000
commitf6a13bffbbae0b5cf9e74b8ee169c892d25faf0e (patch)
tree6d73506b52754ccae65db2c81fb83d8135e2cd8b /gcc
parent963024335a5ad4d219d0feedc4e08149822438ba (diff)
downloadgcc-f6a13bffbbae0b5cf9e74b8ee169c892d25faf0e.zip
gcc-f6a13bffbbae0b5cf9e74b8ee169c892d25faf0e.tar.gz
gcc-f6a13bffbbae0b5cf9e74b8ee169c892d25faf0e.tar.bz2
* fix-header.c (read_scan_file): s/pfile/scan_in/.
From-SVN: r38778
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/fix-header.c2
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);