aboutsummaryrefslogtreecommitdiff
path: root/fixincludes
diff options
context:
space:
mode:
authorBruce Korb <korbb@gcc.gnu.org>2004-11-17 05:06:41 +0000
committerBruce Korb <korbb@gcc.gnu.org>2004-11-17 05:06:41 +0000
commitecb0d20e5dc3c2f8530ae7f6eb87138895939601 (patch)
treef36884a99aeb6cf3aef2161c080e50ec8c1bbd0c /fixincludes
parent43c1b5d29955cfc2c5c8343f4a5d2a8af818b542 (diff)
downloadgcc-ecb0d20e5dc3c2f8530ae7f6eb87138895939601.zip
gcc-ecb0d20e5dc3c2f8530ae7f6eb87138895939601.tar.gz
gcc-ecb0d20e5dc3c2f8530ae7f6eb87138895939601.tar.bz2
remove confusing and unnecessary backslashes
From-SVN: r90790
Diffstat (limited to 'fixincludes')
-rw-r--r--fixincludes/fixincl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fixincludes/fixincl.c b/fixincludes/fixincl.c
index b361146..8bd43dc 100644
--- a/fixincludes/fixincl.c
+++ b/fixincludes/fixincl.c
@@ -885,7 +885,7 @@ fix_with_system (tFixDesc* p_fixd,
/*
* Now add the fix number and file names that may be needed
*/
- sprintf (pz_scan, " %ld \'%s\' \'%s\' \'%s\'", p_fixd - fixDescList,
+ sprintf (pz_scan, " %ld '%s' '%s' '%s'", p_fixd - fixDescList,
pz_fix_file, pz_file_source, pz_temp_file);
}
else /* NOT an "internal" fix: */
@@ -904,7 +904,7 @@ fix_with_system (tFixDesc* p_fixd,
the following bizarre use of 'cat' only works on DOS boxes.
It causes the file to be dropped into a temporary file for
'cat' to read (pipes do not work on DOS). */
- tSCC z_cmd_fmt[] = " \'%s\' | cat > \'%s\'";
+ tSCC z_cmd_fmt[] = " '%s' | cat > '%s'";
#else
/* Don't use positional formatting arguments because some lame-o
implementations cannot cope :-(. */