From a78a8d589e87c8c008b068393ea9610ab88ed5e5 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 6 Apr 1994 00:07:56 +0000 Subject: [PATCH] (process_command): Minor white space cleanups to last patch. From-SVN: r6969 --- gcc/gcc.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gcc/gcc.c b/gcc/gcc.c index 0871edb53d2..00ab5ac4a13 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -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); } } -- 2.30.2