diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 | 
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 | 
| commit | 1689e31de64dad8b8826dc924a82c7ba59a54bf4 (patch) | |
| tree | 81c297fc31ae91c03f9d9729623ea9b0a29a40ab | |
| parent | 292f200484a09d76500f9a54fd3ce8a79efc63b7 (diff) | |
Notes
| -rw-r--r-- | contrib/gcc/c-ppoutput.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/contrib/gcc/c-ppoutput.c b/contrib/gcc/c-ppoutput.c index e97c9bc8ff79..5588da3d863d 100644 --- a/contrib/gcc/c-ppoutput.c +++ b/contrib/gcc/c-ppoutput.c @@ -292,7 +292,7 @@ cb_ident (cpp_reader *pfile ATTRIBUTE_UNUSED, fileline line,  	  const cpp_string *str)  {    maybe_print_line (print.map, line); -  fprintf (print.outf, "#ident \"%s\"\n", str->text); +  fprintf (print.outf, "#ident %s\n", str->text);    print.line++;  } | 
