diff options
author | kan <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-10-15 03:22:13 +0000 |
commit | 4198799468acb64883b6ff065fcc61200469454a (patch) | |
tree | a23c89ec6bd2f5edcf88ada3d0f4c034563b741b /contrib | |
parent | daa06a78b6389b276f2d2e1283273ef8f4f623d5 (diff) | |
parent | 0a20abcc95340c9d2bb59421bac84eca4fb43b0c (diff) | |
download | FreeBSD-src-4198799468acb64883b6ff065fcc61200469454a.zip FreeBSD-src-4198799468acb64883b6ff065fcc61200469454a.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r136527,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib')
-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 e97c9bc..5588da3 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++; } |