diff options
author | Doug Evans <dje@gnu.org> | 1994-04-06 00:07:56 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1994-04-06 00:07:56 +0000 |
commit | a78a8d589e87c8c008b068393ea9610ab88ed5e5 (patch) | |
tree | c3e9776d799b9cf1e929b4a3511fa6b9a83b6c49 | |
parent | ea694f2d44213d1db71d7f163100f939cd1cd0c4 (diff) | |
download | gcc-a78a8d589e87c8c008b068393ea9610ab88ed5e5.zip gcc-a78a8d589e87c8c008b068393ea9610ab88ed5e5.tar.gz gcc-a78a8d589e87c8c008b068393ea9610ab88ed5e5.tar.bz2 |
(process_command): Minor white space cleanups to last patch.
From-SVN: r6969
-rw-r--r-- | gcc/gcc.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -2432,14 +2432,14 @@ process_command (argc, argv) add_prefix (&include_prefix, concat (value, "include", ""), 1, 0, 0); - /* As a kludge, if the arg is "[blah/]stageN/", just add + /* As a kludge, if the arg is "[foo/]stageN/", just add "include" to the include prefix. */ { int len = strlen (value); - if ((len == 7 || (len > 7 && value[len-8] == '/')) - && strncmp (value+len-7, "stage", 5) == 0 - && isdigit (value[len-2]) - && value[len-1] == '/') + if ((len == 7 || (len > 7 && value[len - 8] == '/')) + && strncmp (value + len - 7, "stage", 5) == 0 + && isdigit (value[len - 2]) + && value[len - 1] == '/') add_prefix (&include_prefix, "include", 1, 0, 0); } } |