This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[committed] fix fix-header.c
- From: Eric Christopher <echristo at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Sat, 22 May 2004 01:54:26 -0700
- Subject: [committed] fix fix-header.c
bje missed one here.
Set to false since we're not checking error messages anyhow.
-eric
--
Eric Christopher <echristo@redhat.com>
2004-05-22 Eric Christopher <echristo@redhat.com>
* fix-header.c (read_scan_file): Update for add_path change.
Index: fix-header.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/fix-header.c,v
retrieving revision 1.110
diff -u -p -w -r1.110 fix-header.c
--- fix-header.c 13 Apr 2004 06:04:05 -0000 1.110
+++ fix-header.c 22 May 2004 08:50:37 -0000
@@ -634,12 +634,12 @@ read_scan_file (char *in_fname, int argc
if (argv[i][2] != '\0')
{
strings_processed = 1;
- add_path (xstrdup (argv[i] + 2), BRACKET, false);
+ add_path (xstrdup (argv[i] + 2), BRACKET, false, false);
}
else if (i + 1 != argc)
{
strings_processed = 2;
- add_path (xstrdup (argv[i + 1]), BRACKET, false);
+ add_path (xstrdup (argv[i + 1]), BRACKET, false, false);
}
}
else if (argv[i][1] == 'D')