Commit c201d78b authored by hainque's avatar hainque
Browse files

* gcc.c (process_command): Fix typo.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71050 138bc75d-0d04-0410-961f-82ee72b054a4
parent 17efb0d4
2003-09-04 Nicolas Roche <roche@act-europe.fr>
* gcc.c (process_command): Fix typo.
2003-09-03 David O'Brien <obrien@FreeBSD.org>
optimization/11980
......
......@@ -3186,7 +3186,7 @@ process_command (int argc, const char *const *argv)
if (IS_DIR_SEPARATOR (*temp)
&& strncmp (temp + 1, "lib", 3) == 0
&& IS_DIR_SEPARATOR (temp[4])
&& strncmp (temp + 5, "gcc", 7) == 0)
&& strncmp (temp + 5, "gcc", 3) == 0)
len -= sizeof ("/lib/gcc/") - 1;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment