From: Nicolas Roche Date: Thu, 4 Sep 2003 06:30:02 +0000 (+0200) Subject: * gcc.c (process_command): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5ef564bebaa4e7abb41636a565e43ddbeb268a6;p=gcc.git * gcc.c (process_command): Fix typo. From-SVN: r71050 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55b094a29cd..acbd79987f5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-04 Nicolas Roche + + * gcc.c (process_command): Fix typo. + 2003-09-03 David O'Brien optimization/11980 diff --git a/gcc/gcc.c b/gcc/gcc.c index 8ca0f91d30a..31f3d43bbee 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -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; }